2023-12-08T22:33:19.384 INFO:root:teuthology version: 0.0.1.dev214+gf2de108 2023-12-08T22:33:19.384 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124 --verbose --name yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress 3-final} --owner scheduled_yuriw@teuthology -- /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/orig.config.yaml 2023-12-08T22:33:19.418 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-08T22:33:19.501 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124 branch: wip-yuri5-testing-2023-12-07-0740-pacific description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress 3-final} email: null first_in_suite: false job_id: '7485124' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '20.04' overrides: admin_socket: branch: wip-yuri5-testing-2023-12-07-0740-pacific ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 kernel: hwe: true workunit: branch: wip-yuri5-testing-2023-12-07-0740-pacific sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 owner: scheduled_yuriw@teuthology priority: 71 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 1847 sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-yuri5-testing-2023-12-07-0740-pacific suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_451ceae11b5d4caee05e94372fe658621eefc0b1/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 targets: smithi040.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi149.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph fs volume create foofs - cephadm.apply: specs: - placement: count: 2 service_id: foo service_type: nfs spec: port: 12049 - service_id: nfs.foo service_type: ingress spec: backend_service: nfs.foo frontend_port: 2049 monitor_port: 9002 virtual_ip: '{{VIP0}}/{{VIPPREFIXLEN}}' - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - cephadm.shell: host.a: - ceph nfs export create cephfs --fsname foofs --cluster-id foo --pseudo-path /fake - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/fake /mnt/foo - echo test > /mnt/foo/testfile - sync - cephadm.shell: host.a: - "echo \"Check with each haproxy down in turn...\"\nfor haproxy in `ceph orch\ \ ps | grep ^haproxy.nfs.foo. | awk '{print $1}'`; do\n ceph orch daemon stop\ \ $haproxy\n while ! ceph orch ps | grep $haproxy | grep stopped; do sleep\ \ 1 ; done\n cat /mnt/foo/testfile\n echo $haproxy > /mnt/foo/testfile\n \ \ sync\n ceph orch daemon start $haproxy\n while ! ceph orch ps | grep $haproxy\ \ | grep running; do sleep 1 ; done\ndone\n" volumes: - /mnt/foo:/mnt/foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: f2de108beb0a6dde7f3e6c96039071828a1f6269 timestamp: 2023-12-08_21:24:43 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-12-08T22:33:19.501 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_451ceae11b5d4caee05e94372fe658621eefc0b1/qa; will attempt to use it 2023-12-08T22:33:19.502 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_451ceae11b5d4caee05e94372fe658621eefc0b1/qa/tasks 2023-12-08T22:33:19.502 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-12-08T22:33:19.504 INFO:teuthology.task.internal:Checking packages... 2023-12-08T22:33:19.527 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '451ceae11b5d4caee05e94372fe658621eefc0b1' 2023-12-08T22:33:19.527 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-12-08T22:33:19.528 INFO:teuthology.packaging:ref: None 2023-12-08T22:33:19.528 INFO:teuthology.packaging:tag: None 2023-12-08T22:33:19.528 INFO:teuthology.packaging:branch: wip-yuri5-testing-2023-12-07-0740-pacific 2023-12-08T22:33:19.528 INFO:teuthology.packaging:sha1: 451ceae11b5d4caee05e94372fe658621eefc0b1 2023-12-08T22:33:19.528 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=wip-yuri5-testing-2023-12-07-0740-pacific 2023-12-08T22:33:19.766 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-365-g451ceae1-1focal 2023-12-08T22:33:19.766 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-12-08T22:33:19.772 INFO:teuthology.task.internal:no buildpackages task found 2023-12-08T22:33:19.772 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-12-08T22:33:19.778 INFO:teuthology.task.internal:Saving configuration 2023-12-08T22:33:19.791 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-12-08T22:33:19.797 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-08T22:33:19.825 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi040.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-08 22:27:18.236174', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2023-12-08T22:33:19.848 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi149.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-08 22:27:18.237615', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2023-12-08T22:33:19.848 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-12-08T22:33:19.854 INFO:teuthology.task.internal:roles: ubuntu@smithi040.front.sepia.ceph.com - ['host.a', 'client.0'] 2023-12-08T22:33:19.855 INFO:teuthology.task.internal:roles: ubuntu@smithi149.front.sepia.ceph.com - ['host.b', 'client.1'] 2023-12-08T22:33:19.855 INFO:teuthology.run_tasks:Running task console_log... 2023-12-08T22:33:19.938 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f5c540ee0d0>, signals=[15]) 2023-12-08T22:33:19.939 INFO:teuthology.run_tasks:Running task internal.connect... 2023-12-08T22:33:19.944 INFO:teuthology.task.internal:Opening connections... 2023-12-08T22:33:19.945 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T22:33:19.946 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:33:19.995 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi149.front.sepia.ceph.com 2023-12-08T22:33:19.996 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:33:20.043 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-12-08T22:33:20.049 DEBUG:teuthology.orchestra.run.smithi040:> uname -m 2023-12-08T22:33:20.078 INFO:teuthology.orchestra.run.smithi040.stdout:x86_64 2023-12-08T22:33:20.078 DEBUG:teuthology.orchestra.run.smithi040:> cat /etc/os-release 2023-12-08T22:33:20.127 INFO:teuthology.orchestra.run.smithi040.stdout:NAME="Ubuntu" 2023-12-08T22:33:20.127 INFO:teuthology.orchestra.run.smithi040.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2023-12-08T22:33:20.127 INFO:teuthology.orchestra.run.smithi040.stdout:ID=ubuntu 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:ID_LIKE=debian 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:VERSION_ID="20.04" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:HOME_URL="https://www.ubuntu.com/" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:VERSION_CODENAME=focal 2023-12-08T22:33:20.128 INFO:teuthology.orchestra.run.smithi040.stdout:UBUNTU_CODENAME=focal 2023-12-08T22:33:20.129 INFO:teuthology.lock.ops:Updating smithi040.front.sepia.ceph.com on lock server 2023-12-08T22:33:20.152 DEBUG:teuthology.orchestra.run.smithi149:> uname -m 2023-12-08T22:33:20.159 INFO:teuthology.orchestra.run.smithi149.stdout:x86_64 2023-12-08T22:33:20.159 DEBUG:teuthology.orchestra.run.smithi149:> cat /etc/os-release 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:NAME="Ubuntu" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:ID=ubuntu 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:ID_LIKE=debian 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION_ID="20.04" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:HOME_URL="https://www.ubuntu.com/" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2023-12-08T22:33:20.208 INFO:teuthology.orchestra.run.smithi149.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2023-12-08T22:33:20.209 INFO:teuthology.orchestra.run.smithi149.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2023-12-08T22:33:20.209 INFO:teuthology.orchestra.run.smithi149.stdout:VERSION_CODENAME=focal 2023-12-08T22:33:20.209 INFO:teuthology.orchestra.run.smithi149.stdout:UBUNTU_CODENAME=focal 2023-12-08T22:33:20.209 INFO:teuthology.lock.ops:Updating smithi149.front.sepia.ceph.com on lock server 2023-12-08T22:33:20.273 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-12-08T22:33:20.280 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-12-08T22:33:20.285 INFO:teuthology.task.internal:Checking for old test directory... 2023-12-08T22:33:20.285 DEBUG:teuthology.orchestra.run.smithi040:> test '!' -e /home/ubuntu/cephtest 2023-12-08T22:33:20.288 DEBUG:teuthology.orchestra.run.smithi149:> test '!' -e /home/ubuntu/cephtest 2023-12-08T22:33:20.295 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-12-08T22:33:20.300 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-12-08T22:33:20.301 DEBUG:teuthology.orchestra.run.smithi040:> test -z $(ls -A /var/lib/ceph) 2023-12-08T22:33:20.303 DEBUG:teuthology.orchestra.run.smithi149:> test -z $(ls -A /var/lib/ceph) 2023-12-08T22:33:20.346 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-12-08T22:33:20.401 INFO:teuthology.run_tasks:Running task kernel... 2023-12-08T22:33:20.415 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-12-08T22:33:20.416 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2023-12-08T22:33:20.416 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2023-12-08T22:33:20.416 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': True, 'sha1': 'distro', 'hwe': True}}, timeout 300 2023-12-08T22:33:20.416 DEBUG:teuthology.orchestra.run.smithi040:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-08T22:33:20.417 DEBUG:teuthology.orchestra.run.smithi149:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-08T22:33:20.422 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T22:33:20.422 DEBUG:teuthology.orchestra.run.smithi040:> uname -r 2023-12-08T22:33:20.423 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T22:33:20.423 DEBUG:teuthology.orchestra.run.smithi149:> uname -r 2023-12-08T22:33:20.429 INFO:teuthology.orchestra.run.smithi040.stdout:5.4.0-124-generic 2023-12-08T22:33:20.429 INFO:teuthology.task.kernel:Running kernel on smithi040: 5.4.0-124-generic 2023-12-08T22:33:20.430 DEBUG:teuthology.orchestra.run.smithi040:> sudo apt-get clean 2023-12-08T22:33:20.472 INFO:teuthology.orchestra.run.smithi149.stdout:5.4.0-124-generic 2023-12-08T22:33:20.472 INFO:teuthology.task.kernel:Running kernel on smithi149: 5.4.0-124-generic 2023-12-08T22:33:20.472 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get clean 2023-12-08T22:33:20.567 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get update 2023-12-08T22:33:20.585 DEBUG:teuthology.orchestra.run.smithi040:> sudo apt-get update 2023-12-08T22:33:20.715 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2023-12-08T22:33:20.731 INFO:teuthology.orchestra.run.smithi149.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2023-12-08T22:33:20.788 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2023-12-08T22:33:20.850 INFO:teuthology.orchestra.run.smithi149.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2023-12-08T22:33:20.877 INFO:teuthology.orchestra.run.smithi040.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2023-12-08T22:33:20.881 INFO:teuthology.orchestra.run.smithi040.stdout:Get:2 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2023-12-08T22:33:20.943 INFO:teuthology.orchestra.run.smithi040.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2023-12-08T22:33:21.100 INFO:teuthology.orchestra.run.smithi149.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [917 kB] 2023-12-08T22:33:21.190 INFO:teuthology.orchestra.run.smithi149.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,015 kB] 2023-12-08T22:33:21.228 INFO:teuthology.orchestra.run.smithi149.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [487 kB] 2023-12-08T22:33:21.232 INFO:teuthology.orchestra.run.smithi149.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2023-12-08T22:33:21.232 INFO:teuthology.orchestra.run.smithi149.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.0 kB] 2023-12-08T22:33:21.232 INFO:teuthology.orchestra.run.smithi149.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,562 kB] 2023-12-08T22:33:21.251 INFO:teuthology.orchestra.run.smithi149.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [358 kB] 2023-12-08T22:33:21.254 INFO:teuthology.orchestra.run.smithi149.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2023-12-08T22:33:21.254 INFO:teuthology.orchestra.run.smithi149.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [762 kB] 2023-12-08T22:33:21.261 INFO:teuthology.orchestra.run.smithi149.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,140 kB] 2023-12-08T22:33:21.268 INFO:teuthology.orchestra.run.smithi149.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [273 kB] 2023-12-08T22:33:21.270 INFO:teuthology.orchestra.run.smithi149.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2023-12-08T22:33:21.271 INFO:teuthology.orchestra.run.smithi149.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2023-12-08T22:33:21.271 INFO:teuthology.orchestra.run.smithi149.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.8 kB] 2023-12-08T22:33:21.271 INFO:teuthology.orchestra.run.smithi149.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,484 B] 2023-12-08T22:33:21.279 INFO:teuthology.orchestra.run.smithi149.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2023-12-08T22:33:21.279 INFO:teuthology.orchestra.run.smithi149.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2023-12-08T22:33:21.280 INFO:teuthology.orchestra.run.smithi149.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2023-12-08T22:33:21.280 INFO:teuthology.orchestra.run.smithi149.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2023-12-08T22:33:21.286 INFO:teuthology.orchestra.run.smithi040.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2023-12-08T22:33:21.296 INFO:teuthology.orchestra.run.smithi149.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2023-12-08T22:33:21.296 INFO:teuthology.orchestra.run.smithi149.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2023-12-08T22:33:21.297 INFO:teuthology.orchestra.run.smithi149.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2023-12-08T22:33:21.381 INFO:teuthology.orchestra.run.smithi040.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,610 kB] 2023-12-08T22:33:21.423 INFO:teuthology.orchestra.run.smithi149.stdout:Get:27 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [686 kB] 2023-12-08T22:33:21.525 INFO:teuthology.orchestra.run.smithi040.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,015 kB] 2023-12-08T22:33:21.756 INFO:teuthology.orchestra.run.smithi149.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,610 kB] 2023-12-08T22:33:21.911 INFO:teuthology.orchestra.run.smithi040.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [686 kB] 2023-12-08T22:33:21.925 INFO:teuthology.orchestra.run.smithi040.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [402 kB] 2023-12-08T22:33:21.934 INFO:teuthology.orchestra.run.smithi040.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2023-12-08T22:33:21.934 INFO:teuthology.orchestra.run.smithi040.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [34.7 kB] 2023-12-08T22:33:21.935 INFO:teuthology.orchestra.run.smithi040.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,411 kB] 2023-12-08T22:33:21.945 INFO:teuthology.orchestra.run.smithi149.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [402 kB] 2023-12-08T22:33:21.958 INFO:teuthology.orchestra.run.smithi149.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2023-12-08T22:33:21.959 INFO:teuthology.orchestra.run.smithi149.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [34.7 kB] 2023-12-08T22:33:21.960 INFO:teuthology.orchestra.run.smithi149.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,411 kB] 2023-12-08T22:33:21.994 INFO:teuthology.orchestra.run.smithi040.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [917 kB] 2023-12-08T22:33:22.010 INFO:teuthology.orchestra.run.smithi040.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [336 kB] 2023-12-08T22:33:22.011 INFO:teuthology.orchestra.run.smithi040.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [487 kB] 2023-12-08T22:33:22.017 INFO:teuthology.orchestra.run.smithi040.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2023-12-08T22:33:22.017 INFO:teuthology.orchestra.run.smithi040.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [634 kB] 2023-12-08T22:33:22.020 INFO:teuthology.orchestra.run.smithi040.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2023-12-08T22:33:22.021 INFO:teuthology.orchestra.run.smithi040.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,562 kB] 2023-12-08T22:33:22.028 INFO:teuthology.orchestra.run.smithi149.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [336 kB] 2023-12-08T22:33:22.031 INFO:teuthology.orchestra.run.smithi040.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [915 kB] 2023-12-08T22:33:22.039 INFO:teuthology.orchestra.run.smithi149.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2023-12-08T22:33:22.039 INFO:teuthology.orchestra.run.smithi149.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [915 kB] 2023-12-08T22:33:22.062 INFO:teuthology.orchestra.run.smithi149.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [634 kB] 2023-12-08T22:33:22.100 INFO:teuthology.orchestra.run.smithi040.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.0 kB] 2023-12-08T22:33:22.101 INFO:teuthology.orchestra.run.smithi040.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [358 kB] 2023-12-08T22:33:22.107 INFO:teuthology.orchestra.run.smithi040.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2023-12-08T22:33:22.213 INFO:teuthology.orchestra.run.smithi040.stdout:Get:23 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [192 kB] 2023-12-08T22:33:22.251 INFO:teuthology.orchestra.run.smithi149.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [192 kB] 2023-12-08T22:33:22.271 INFO:teuthology.orchestra.run.smithi040.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,140 kB] 2023-12-08T22:33:22.642 INFO:teuthology.orchestra.run.smithi040.stdout:Get:25 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2023-12-08T22:33:22.647 INFO:teuthology.orchestra.run.smithi040.stdout:Get:26 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2023-12-08T22:33:22.650 INFO:teuthology.orchestra.run.smithi040.stdout:Get:27 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.6 kB] 2023-12-08T22:33:22.657 INFO:teuthology.orchestra.run.smithi040.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,504 B] 2023-12-08T22:33:22.658 INFO:teuthology.orchestra.run.smithi040.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2023-12-08T22:33:22.682 INFO:teuthology.orchestra.run.smithi149.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2023-12-08T22:33:22.688 INFO:teuthology.orchestra.run.smithi149.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.6 kB] 2023-12-08T22:33:22.695 INFO:teuthology.orchestra.run.smithi149.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2023-12-08T22:33:22.698 INFO:teuthology.orchestra.run.smithi149.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,504 B] 2023-12-08T22:33:22.699 INFO:teuthology.orchestra.run.smithi149.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2023-12-08T22:33:22.906 INFO:teuthology.orchestra.run.smithi040.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [762 kB] 2023-12-08T22:33:22.945 INFO:teuthology.orchestra.run.smithi040.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [273 kB] 2023-12-08T22:33:22.958 INFO:teuthology.orchestra.run.smithi040.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2023-12-08T22:33:22.959 INFO:teuthology.orchestra.run.smithi040.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2023-12-08T22:33:22.960 INFO:teuthology.orchestra.run.smithi040.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.8 kB] 2023-12-08T22:33:22.961 INFO:teuthology.orchestra.run.smithi040.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,484 B] 2023-12-08T22:33:22.962 INFO:teuthology.orchestra.run.smithi040.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2023-12-08T22:33:22.962 INFO:teuthology.orchestra.run.smithi040.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2023-12-08T22:33:22.963 INFO:teuthology.orchestra.run.smithi040.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2023-12-08T22:33:22.989 INFO:teuthology.orchestra.run.smithi040.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2023-12-08T22:33:23.153 INFO:teuthology.orchestra.run.smithi040.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2023-12-08T22:33:23.337 INFO:teuthology.orchestra.run.smithi040.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2023-12-08T22:33:23.359 INFO:teuthology.orchestra.run.smithi040.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2023-12-08T22:33:25.219 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 18.4 MB in 3s (7,043 kB/s) 2023-12-08T22:33:25.890 INFO:teuthology.orchestra.run.smithi040.stdout:Fetched 18.4 MB in 3s (5,550 kB/s) 2023-12-08T22:33:26.618 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2023-12-08T22:33:26.644 DEBUG:teuthology.orchestra.run.smithi149:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2023-12-08T22:33:26.712 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2023-12-08T22:33:26.895 INFO:teuthology.orchestra.run.smithi149.stdout:Building dependency tree... 2023-12-08T22:33:26.895 INFO:teuthology.orchestra.run.smithi149.stdout:Reading state information... 2023-12-08T22:33:27.066 INFO:teuthology.orchestra.run.smithi149.stdout:The following additional packages will be installed: 2023-12-08T22:33:27.066 INFO:teuthology.orchestra.run.smithi149.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2023-12-08T22:33:27.067 INFO:teuthology.orchestra.run.smithi149.stdout: libusbmuxd6 linux-image-5.15.0-91-generic linux-modules-5.15.0-91-generic 2023-12-08T22:33:27.067 INFO:teuthology.orchestra.run.smithi149.stdout: linux-modules-extra-5.15.0-91-generic thermald upower usbmuxd 2023-12-08T22:33:27.068 INFO:teuthology.orchestra.run.smithi149.stdout:Suggested packages: 2023-12-08T22:33:27.068 INFO:teuthology.orchestra.run.smithi149.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2023-12-08T22:33:27.068 INFO:teuthology.orchestra.run.smithi149.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-91-generic 2023-12-08T22:33:27.117 INFO:teuthology.orchestra.run.smithi149.stdout:The following NEW packages will be installed: 2023-12-08T22:33:27.117 INFO:teuthology.orchestra.run.smithi149.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2023-12-08T22:33:27.117 INFO:teuthology.orchestra.run.smithi149.stdout: libusbmuxd6 linux-image-5.15.0-91-generic linux-image-generic-hwe-20.04 2023-12-08T22:33:27.118 INFO:teuthology.orchestra.run.smithi149.stdout: linux-modules-5.15.0-91-generic linux-modules-extra-5.15.0-91-generic 2023-12-08T22:33:27.118 INFO:teuthology.orchestra.run.smithi149.stdout: thermald upower usbmuxd 2023-12-08T22:33:27.303 INFO:teuthology.orchestra.run.smithi149.stdout:0 upgraded, 13 newly installed, 0 to remove and 283 not upgraded. 2023-12-08T22:33:27.304 INFO:teuthology.orchestra.run.smithi149.stdout:Need to get 90.9 MB of archives. 2023-12-08T22:33:27.304 INFO:teuthology.orchestra.run.smithi149.stdout:After this operation, 497 MB of additional disk space will be used. 2023-12-08T22:33:27.304 INFO:teuthology.orchestra.run.smithi149.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2023-12-08T22:33:27.332 INFO:teuthology.orchestra.run.smithi040.stdout:Reading package lists... 2023-12-08T22:33:27.358 DEBUG:teuthology.orchestra.run.smithi040:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2023-12-08T22:33:27.429 INFO:teuthology.orchestra.run.smithi040.stdout:Reading package lists... 2023-12-08T22:33:27.576 INFO:teuthology.orchestra.run.smithi149.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2023-12-08T22:33:27.605 INFO:teuthology.orchestra.run.smithi149.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2023-12-08T22:33:27.623 INFO:teuthology.orchestra.run.smithi149.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2023-12-08T22:33:27.640 INFO:teuthology.orchestra.run.smithi040.stdout:Building dependency tree... 2023-12-08T22:33:27.641 INFO:teuthology.orchestra.run.smithi040.stdout:Reading state information... 2023-12-08T22:33:27.698 INFO:teuthology.orchestra.run.smithi149.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2023-12-08T22:33:27.732 INFO:teuthology.orchestra.run.smithi149.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [21.0 MB] 2023-12-08T22:33:27.831 INFO:teuthology.orchestra.run.smithi040.stdout:The following additional packages will be installed: 2023-12-08T22:33:27.832 INFO:teuthology.orchestra.run.smithi040.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2023-12-08T22:33:27.832 INFO:teuthology.orchestra.run.smithi040.stdout: libusbmuxd6 linux-image-5.15.0-91-generic linux-modules-5.15.0-91-generic 2023-12-08T22:33:27.832 INFO:teuthology.orchestra.run.smithi040.stdout: linux-modules-extra-5.15.0-91-generic thermald upower usbmuxd 2023-12-08T22:33:27.833 INFO:teuthology.orchestra.run.smithi040.stdout:Suggested packages: 2023-12-08T22:33:27.833 INFO:teuthology.orchestra.run.smithi040.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2023-12-08T22:33:27.833 INFO:teuthology.orchestra.run.smithi040.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-91-generic 2023-12-08T22:33:27.879 INFO:teuthology.orchestra.run.smithi040.stdout:The following NEW packages will be installed: 2023-12-08T22:33:27.880 INFO:teuthology.orchestra.run.smithi040.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2023-12-08T22:33:27.880 INFO:teuthology.orchestra.run.smithi040.stdout: libusbmuxd6 linux-image-5.15.0-91-generic linux-image-generic-hwe-20.04 2023-12-08T22:33:27.880 INFO:teuthology.orchestra.run.smithi040.stdout: linux-modules-5.15.0-91-generic linux-modules-extra-5.15.0-91-generic 2023-12-08T22:33:27.880 INFO:teuthology.orchestra.run.smithi040.stdout: thermald upower usbmuxd 2023-12-08T22:33:27.935 INFO:teuthology.orchestra.run.smithi040.stdout:0 upgraded, 13 newly installed, 0 to remove and 283 not upgraded. 2023-12-08T22:33:27.935 INFO:teuthology.orchestra.run.smithi040.stdout:Need to get 90.9 MB of archives. 2023-12-08T22:33:27.935 INFO:teuthology.orchestra.run.smithi040.stdout:After this operation, 497 MB of additional disk space will be used. 2023-12-08T22:33:27.935 INFO:teuthology.orchestra.run.smithi040.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2023-12-08T22:33:27.992 INFO:teuthology.orchestra.run.smithi040.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2023-12-08T22:33:27.998 INFO:teuthology.orchestra.run.smithi040.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2023-12-08T22:33:28.002 INFO:teuthology.orchestra.run.smithi040.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2023-12-08T22:33:28.017 INFO:teuthology.orchestra.run.smithi040.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2023-12-08T22:33:28.025 INFO:teuthology.orchestra.run.smithi040.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [21.0 MB] 2023-12-08T22:33:28.303 INFO:teuthology.orchestra.run.smithi040.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [11.4 MB] 2023-12-08T22:33:28.404 INFO:teuthology.orchestra.run.smithi040.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [57.9 MB] 2023-12-08T22:33:28.618 INFO:teuthology.orchestra.run.smithi149.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [11.4 MB] 2023-12-08T22:33:28.912 INFO:teuthology.orchestra.run.smithi149.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-91-generic amd64 5.15.0-91.101~20.04.1 [57.9 MB] 2023-12-08T22:33:29.113 INFO:teuthology.orchestra.run.smithi040.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.91.101~20.04.48 [2,628 B] 2023-12-08T22:33:29.113 INFO:teuthology.orchestra.run.smithi040.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2023-12-08T22:33:29.114 INFO:teuthology.orchestra.run.smithi040.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2023-12-08T22:33:29.120 INFO:teuthology.orchestra.run.smithi040.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2023-12-08T22:33:29.123 INFO:teuthology.orchestra.run.smithi040.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2023-12-08T22:33:29.806 INFO:teuthology.orchestra.run.smithi040.stdout:Fetched 90.9 MB in 1s (73.6 MB/s) 2023-12-08T22:33:30.005 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2023-12-08T22:33:30.876 INFO:teuthology.orchestra.run.smithi149.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.91.101~20.04.48 [2,628 B] 2023-12-08T22:33:30.876 INFO:teuthology.orchestra.run.smithi149.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2023-12-08T22:33:30.877 INFO:teuthology.orchestra.run.smithi149.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2023-12-08T22:33:31.046 INFO:teuthology.orchestra.run.smithi149.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2023-12-08T22:33:31.398 INFO:teuthology.orchestra.run.smithi149.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2023-12-08T22:33:31.711 INFO:teuthology.orchestra.run.smithi040.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2023-12-08T22:33:31.716 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2023-12-08T22:33:31.878 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2023-12-08T22:33:32.109 INFO:teuthology.orchestra.run.smithi149.stdout:Fetched 90.9 MB in 4s (21.2 MB/s) 2023-12-08T22:33:32.256 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libplist3:amd64. 2023-12-08T22:33:32.270 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2023-12-08T22:33:32.293 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2023-12-08T22:33:32.314 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2023-12-08T22:33:32.642 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2023-12-08T22:33:32.657 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2023-12-08T22:33:32.692 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2023-12-08T22:33:33.037 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2023-12-08T22:33:33.053 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2023-12-08T22:33:33.095 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2023-12-08T22:33:33.473 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libupower-glib3:amd64. 2023-12-08T22:33:33.487 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2023-12-08T22:33:33.532 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2023-12-08T22:33:33.868 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package linux-modules-5.15.0-91-generic. 2023-12-08T22:33:33.881 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../05-linux-modules-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:33.918 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking linux-modules-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:34.034 INFO:teuthology.orchestra.run.smithi149.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 104373 files and directories currently installed.) 2023-12-08T22:33:34.039 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2023-12-08T22:33:34.190 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2023-12-08T22:33:34.552 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libplist3:amd64. 2023-12-08T22:33:34.566 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2023-12-08T22:33:34.602 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2023-12-08T22:33:34.963 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2023-12-08T22:33:34.976 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2023-12-08T22:33:35.013 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2023-12-08T22:33:35.358 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2023-12-08T22:33:35.371 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2023-12-08T22:33:35.416 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2023-12-08T22:33:35.761 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libupower-glib3:amd64. 2023-12-08T22:33:35.773 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2023-12-08T22:33:35.810 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2023-12-08T22:33:36.172 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-modules-5.15.0-91-generic. 2023-12-08T22:33:36.186 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../05-linux-modules-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:36.230 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-modules-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:36.778 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package linux-image-5.15.0-91-generic. 2023-12-08T22:33:36.792 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../06-linux-image-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:36.883 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:37.406 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-91-generic. 2023-12-08T22:33:37.421 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:37.481 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking linux-modules-extra-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:38.798 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-image-5.15.0-91-generic. 2023-12-08T22:33:38.814 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../06-linux-image-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:38.940 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:39.484 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-91-generic. 2023-12-08T22:33:39.499 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-91-generic_5.15.0-91.101~20.04.1_amd64.deb ... 2023-12-08T22:33:39.542 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-modules-extra-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:44.484 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2023-12-08T22:33:44.500 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.91.101~20.04.48_amd64.deb ... 2023-12-08T22:33:44.561 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.91.101~20.04.48) ... 2023-12-08T22:33:44.878 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package libevdev2:amd64. 2023-12-08T22:33:44.894 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2023-12-08T22:33:44.936 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2023-12-08T22:33:45.331 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package thermald. 2023-12-08T22:33:45.347 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2023-12-08T22:33:45.389 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2023-12-08T22:33:45.936 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package upower. 2023-12-08T22:33:45.951 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2023-12-08T22:33:46.017 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking upower (0.99.11-1build2) ... 2023-12-08T22:33:46.318 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2023-12-08T22:33:46.333 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.91.101~20.04.48_amd64.deb ... 2023-12-08T22:33:46.376 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.91.101~20.04.48) ... 2023-12-08T22:33:46.483 INFO:teuthology.orchestra.run.smithi040.stdout:Selecting previously unselected package usbmuxd. 2023-12-08T22:33:46.498 INFO:teuthology.orchestra.run.smithi040.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2023-12-08T22:33:46.540 INFO:teuthology.orchestra.run.smithi040.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2023-12-08T22:33:46.695 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package libevdev2:amd64. 2023-12-08T22:33:46.710 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2023-12-08T22:33:46.753 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2023-12-08T22:33:46.864 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2023-12-08T22:33:46.986 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2023-12-08T22:33:47.113 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2023-12-08T22:33:47.206 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package thermald. 2023-12-08T22:33:47.222 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2023-12-08T22:33:47.264 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2023-12-08T22:33:47.272 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2023-12-08T22:33:47.398 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2023-12-08T22:33:47.524 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2023-12-08T22:33:47.650 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up upower (0.99.11-1build2) ... 2023-12-08T22:33:48.053 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package upower. 2023-12-08T22:33:48.070 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2023-12-08T22:33:48.162 INFO:teuthology.orchestra.run.smithi040.stdout:upower.service is a disabled or a static unit, not starting it. 2023-12-08T22:33:48.213 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2023-12-08T22:33:48.415 INFO:teuthology.orchestra.run.smithi040.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2023-12-08T22:33:48.427 INFO:teuthology.orchestra.run.smithi040.stdout:Adding system user `usbmux' (UID 114) ... 2023-12-08T22:33:48.427 INFO:teuthology.orchestra.run.smithi040.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2023-12-08T22:33:48.436 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking upower (0.99.11-1build2) ... 2023-12-08T22:33:48.857 INFO:teuthology.orchestra.run.smithi149.stdout:Selecting previously unselected package usbmuxd. 2023-12-08T22:33:48.871 INFO:teuthology.orchestra.run.smithi149.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2023-12-08T22:33:48.888 INFO:teuthology.orchestra.run.smithi040.stdout:Not creating home directory `/var/lib/usbmux'. 2023-12-08T22:33:48.915 INFO:teuthology.orchestra.run.smithi149.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2023-12-08T22:33:49.120 INFO:teuthology.orchestra.run.smithi040.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2023-12-08T22:33:49.160 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2023-12-08T22:33:49.248 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2023-12-08T22:33:49.369 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2023-12-08T22:33:49.468 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2023-12-08T22:33:49.469 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2023-12-08T22:33:49.496 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2023-12-08T22:33:49.621 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2023-12-08T22:33:49.747 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2023-12-08T22:33:49.890 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2023-12-08T22:33:49.957 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:49.991 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up upower (0.99.11-1build2) ... 2023-12-08T22:33:50.557 INFO:teuthology.orchestra.run.smithi149.stdout:upower.service is a disabled or a static unit, not starting it. 2023-12-08T22:33:50.603 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2023-12-08T22:33:50.790 INFO:teuthology.orchestra.run.smithi149.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2023-12-08T22:33:50.796 INFO:teuthology.orchestra.run.smithi149.stdout:Adding system user `usbmux' (UID 114) ... 2023-12-08T22:33:50.796 INFO:teuthology.orchestra.run.smithi149.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2023-12-08T22:33:51.304 INFO:teuthology.orchestra.run.smithi149.stdout:Not creating home directory `/var/lib/usbmux'. 2023-12-08T22:33:51.324 INFO:teuthology.orchestra.run.smithi040.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:33:51.324 INFO:teuthology.orchestra.run.smithi040.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-91-generic 2023-12-08T22:33:51.520 INFO:teuthology.orchestra.run.smithi149.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2023-12-08T22:33:51.542 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up linux-modules-extra-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:51.558 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2023-12-08T22:33:51.869 INFO:teuthology.orchestra.run.smithi149.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2023-12-08T22:33:51.870 INFO:teuthology.orchestra.run.smithi149.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2023-12-08T22:33:52.366 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:52.943 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.91.101~20.04.48) ... 2023-12-08T22:33:53.086 INFO:teuthology.orchestra.run.smithi040.stdout:Setting up linux-modules-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:53.826 INFO:teuthology.orchestra.run.smithi149.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:33:53.827 INFO:teuthology.orchestra.run.smithi149.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-91-generic 2023-12-08T22:33:54.443 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-modules-extra-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:54.521 INFO:teuthology.orchestra.run.smithi040.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2023-12-08T22:33:54.802 INFO:teuthology.orchestra.run.smithi040.stdout:Processing triggers for man-db (2.9.1-1) ... 2023-12-08T22:33:55.588 INFO:teuthology.orchestra.run.smithi040.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2023-12-08T22:33:55.705 INFO:teuthology.orchestra.run.smithi040.stdout:Processing triggers for linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:55.759 INFO:teuthology.orchestra.run.smithi040.stdout:/etc/kernel/postinst.d/initramfs-tools: 2023-12-08T22:33:55.759 INFO:teuthology.orchestra.run.smithi040.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:33:55.861 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.91.101~20.04.48) ... 2023-12-08T22:33:55.995 INFO:teuthology.orchestra.run.smithi149.stdout:Setting up linux-modules-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:57.380 INFO:teuthology.orchestra.run.smithi149.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2023-12-08T22:33:57.652 INFO:teuthology.orchestra.run.smithi149.stdout:Processing triggers for man-db (2.9.1-1) ... 2023-12-08T22:33:58.447 INFO:teuthology.orchestra.run.smithi149.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2023-12-08T22:33:58.564 INFO:teuthology.orchestra.run.smithi149.stdout:Processing triggers for linux-image-5.15.0-91-generic (5.15.0-91.101~20.04.1) ... 2023-12-08T22:33:58.645 INFO:teuthology.orchestra.run.smithi149.stdout:/etc/kernel/postinst.d/initramfs-tools: 2023-12-08T22:33:58.645 INFO:teuthology.orchestra.run.smithi149.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:34:21.907 INFO:teuthology.orchestra.run.smithi040.stdout:/etc/kernel/postinst.d/zz-update-grub: 2023-12-08T22:34:21.908 INFO:teuthology.orchestra.run.smithi040.stdout:Sourcing file `/etc/default/grub' 2023-12-08T22:34:21.924 INFO:teuthology.orchestra.run.smithi040.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2023-12-08T22:34:21.946 INFO:teuthology.orchestra.run.smithi040.stdout:Generating grub configuration file ... 2023-12-08T22:34:22.338 INFO:teuthology.orchestra.run.smithi040.stdout:Found linux image: /boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:34:22.356 INFO:teuthology.orchestra.run.smithi040.stdout:Found initrd image: /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:34:22.847 INFO:teuthology.orchestra.run.smithi040.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2023-12-08T22:34:22.859 INFO:teuthology.orchestra.run.smithi040.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2023-12-08T22:34:23.879 INFO:teuthology.orchestra.run.smithi149.stdout:/etc/kernel/postinst.d/zz-update-grub: 2023-12-08T22:34:23.879 INFO:teuthology.orchestra.run.smithi149.stdout:Sourcing file `/etc/default/grub' 2023-12-08T22:34:23.902 INFO:teuthology.orchestra.run.smithi149.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2023-12-08T22:34:23.917 INFO:teuthology.orchestra.run.smithi149.stdout:Generating grub configuration file ... 2023-12-08T22:34:24.243 INFO:teuthology.orchestra.run.smithi149.stdout:Found linux image: /boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:34:24.265 INFO:teuthology.orchestra.run.smithi149.stdout:Found initrd image: /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:34:24.684 INFO:teuthology.orchestra.run.smithi149.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2023-12-08T22:34:24.696 INFO:teuthology.orchestra.run.smithi149.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2023-12-08T22:34:25.119 INFO:teuthology.orchestra.run.smithi040.stdout:done 2023-12-08T22:34:25.568 DEBUG:teuthology.orchestra.run.smithi040:> dpkg -s linux-image-generic-hwe-20.04 2023-12-08T22:34:25.627 INFO:teuthology.orchestra.run.smithi040.stdout:Package: linux-image-generic-hwe-20.04 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Status: install ok installed 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Priority: optional 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Section: kernel 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Installed-Size: 20 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Maintainer: Ubuntu Kernel Team 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Architecture: amd64 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Source: linux-meta-hwe-5.15 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Version: 5.15.0.91.101~20.04.48 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.1), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-91), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.1) 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Depends: linux-image-5.15.0-91-generic, linux-modules-extra-5.15.0-91-generic, linux-firmware, intel-microcode, amd64-microcode 2023-12-08T22:34:25.628 INFO:teuthology.orchestra.run.smithi040.stdout:Recommends: thermald 2023-12-08T22:34:25.629 INFO:teuthology.orchestra.run.smithi040.stdout:Description: Generic Linux kernel image 2023-12-08T22:34:25.629 INFO:teuthology.orchestra.run.smithi040.stdout: This package will always depend on the latest generic kernel image 2023-12-08T22:34:25.629 INFO:teuthology.orchestra.run.smithi040.stdout: available. 2023-12-08T22:34:25.629 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-91-generic 2023-12-08T22:34:25.629 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-12-08T22:34:25.629 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-12-08T22:34:25.629 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2023-12-08T22:34:25.629 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi040.front.sepia.ceph.com, path=None, version=distro) 2023-12-08T22:34:25.630 DEBUG:teuthology.orchestra.run.smithi040:> sudo apt-get clean 2023-12-08T22:34:25.717 DEBUG:teuthology.orchestra.run.smithi040:> sudo apt-get update 2023-12-08T22:34:25.847 INFO:teuthology.orchestra.run.smithi040.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2023-12-08T22:34:25.852 INFO:teuthology.orchestra.run.smithi040.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2023-12-08T22:34:25.869 INFO:teuthology.orchestra.run.smithi040.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2023-12-08T22:34:25.964 INFO:teuthology.orchestra.run.smithi040.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2023-12-08T22:34:26.509 INFO:teuthology.orchestra.run.smithi149.stdout:done 2023-12-08T22:34:26.904 DEBUG:teuthology.orchestra.run.smithi149:> dpkg -s linux-image-generic-hwe-20.04 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Package: linux-image-generic-hwe-20.04 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Status: install ok installed 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Priority: optional 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Section: kernel 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Installed-Size: 20 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Maintainer: Ubuntu Kernel Team 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Architecture: amd64 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Source: linux-meta-hwe-5.15 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Version: 5.15.0.91.101~20.04.48 2023-12-08T22:34:26.940 INFO:teuthology.orchestra.run.smithi149.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.1), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-91), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.1) 2023-12-08T22:34:26.941 INFO:teuthology.orchestra.run.smithi149.stdout:Depends: linux-image-5.15.0-91-generic, linux-modules-extra-5.15.0-91-generic, linux-firmware, intel-microcode, amd64-microcode 2023-12-08T22:34:26.941 INFO:teuthology.orchestra.run.smithi149.stdout:Recommends: thermald 2023-12-08T22:34:26.941 INFO:teuthology.orchestra.run.smithi149.stdout:Description: Generic Linux kernel image 2023-12-08T22:34:26.941 INFO:teuthology.orchestra.run.smithi149.stdout: This package will always depend on the latest generic kernel image 2023-12-08T22:34:26.941 INFO:teuthology.orchestra.run.smithi149.stdout: available. 2023-12-08T22:34:26.941 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-91-generic 2023-12-08T22:34:26.941 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-12-08T22:34:26.941 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-12-08T22:34:26.941 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2023-12-08T22:34:26.941 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi149.front.sepia.ceph.com, path=None, version=distro) 2023-12-08T22:34:26.942 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get clean 2023-12-08T22:34:27.016 DEBUG:teuthology.orchestra.run.smithi149:> sudo apt-get update 2023-12-08T22:34:27.154 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2023-12-08T22:34:27.266 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2023-12-08T22:34:27.348 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2023-12-08T22:34:27.429 INFO:teuthology.orchestra.run.smithi149.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2023-12-08T22:34:27.678 INFO:teuthology.orchestra.run.smithi040.stdout:Reading package lists... 2023-12-08T22:34:27.704 DEBUG:teuthology.orchestra.run.smithi040:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2023-12-08T22:34:27.775 INFO:teuthology.orchestra.run.smithi040.stdout:Reading package lists... 2023-12-08T22:34:27.963 INFO:teuthology.orchestra.run.smithi040.stdout:Building dependency tree... 2023-12-08T22:34:27.964 INFO:teuthology.orchestra.run.smithi040.stdout:Reading state information... 2023-12-08T22:34:28.182 INFO:teuthology.orchestra.run.smithi040.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.91.101~20.04.48). 2023-12-08T22:34:28.182 INFO:teuthology.orchestra.run.smithi040.stdout:0 upgraded, 0 newly installed, 0 to remove and 283 not upgraded. 2023-12-08T22:34:28.184 DEBUG:teuthology.orchestra.run.smithi040:> dpkg -s linux-image-generic-hwe-20.04 2023-12-08T22:34:28.204 INFO:teuthology.orchestra.run.smithi040.stdout:Package: linux-image-generic-hwe-20.04 2023-12-08T22:34:28.204 INFO:teuthology.orchestra.run.smithi040.stdout:Status: install ok installed 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Priority: optional 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Section: kernel 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Installed-Size: 20 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Maintainer: Ubuntu Kernel Team 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Architecture: amd64 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Source: linux-meta-hwe-5.15 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Version: 5.15.0.91.101~20.04.48 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.1), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-91), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.1) 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Depends: linux-image-5.15.0-91-generic, linux-modules-extra-5.15.0-91-generic, linux-firmware, intel-microcode, amd64-microcode 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Recommends: thermald 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout:Description: Generic Linux kernel image 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout: This package will always depend on the latest generic kernel image 2023-12-08T22:34:28.205 INFO:teuthology.orchestra.run.smithi040.stdout: available. 2023-12-08T22:34:28.206 DEBUG:teuthology.orchestra.run.smithi040:> mktemp 2023-12-08T22:34:28.210 INFO:teuthology.orchestra.run.smithi040.stdout:/tmp/tmp.8I4Ib0Blge 2023-12-08T22:34:28.210 DEBUG:teuthology.orchestra.run.smithi040:> sudo cp /boot/grub/grub.cfg /tmp/tmp.8I4Ib0Blge 2023-12-08T22:34:28.220 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod 0666 /tmp/tmp.8I4Ib0Blge 2023-12-08T22:34:28.308 DEBUG:teuthology.orchestra.remote:smithi040:/tmp/tmp.8I4Ib0Blge is 9KB 2023-12-08T22:34:28.322 DEBUG:teuthology.orchestra.run.smithi040:> rm -fr /tmp/tmp.8I4Ib0Blge 2023-12-08T22:34:28.328 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2023-12-08T22:34:28.385 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:34:28.385 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/grub.d/01_ceph_kernel 2023-12-08T22:34:28.385 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2023-12-08T22:34:28.418 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-91-generic 2023-12-08T22:34:28.418 DEBUG:teuthology.orchestra.run.smithi040:> sudo update-grub 2023-12-08T22:34:28.924 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2023-12-08T22:34:28.948 DEBUG:teuthology.orchestra.run.smithi149:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2023-12-08T22:34:29.017 INFO:teuthology.orchestra.run.smithi149.stdout:Reading package lists... 2023-12-08T22:34:29.210 INFO:teuthology.orchestra.run.smithi149.stdout:Building dependency tree... 2023-12-08T22:34:29.210 INFO:teuthology.orchestra.run.smithi149.stdout:Reading state information... 2023-12-08T22:34:29.421 INFO:teuthology.orchestra.run.smithi149.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.91.101~20.04.48). 2023-12-08T22:34:29.421 INFO:teuthology.orchestra.run.smithi149.stdout:0 upgraded, 0 newly installed, 0 to remove and 283 not upgraded. 2023-12-08T22:34:29.423 DEBUG:teuthology.orchestra.run.smithi149:> dpkg -s linux-image-generic-hwe-20.04 2023-12-08T22:34:29.445 INFO:teuthology.orchestra.run.smithi149.stdout:Package: linux-image-generic-hwe-20.04 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Status: install ok installed 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Priority: optional 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Section: kernel 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Installed-Size: 20 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Maintainer: Ubuntu Kernel Team 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Architecture: amd64 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Source: linux-meta-hwe-5.15 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Version: 5.15.0.91.101~20.04.48 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.1), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-91), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.1) 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Depends: linux-image-5.15.0-91-generic, linux-modules-extra-5.15.0-91-generic, linux-firmware, intel-microcode, amd64-microcode 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Recommends: thermald 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout:Description: Generic Linux kernel image 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout: This package will always depend on the latest generic kernel image 2023-12-08T22:34:29.446 INFO:teuthology.orchestra.run.smithi149.stdout: available. 2023-12-08T22:34:29.447 DEBUG:teuthology.orchestra.run.smithi149:> mktemp 2023-12-08T22:34:29.451 INFO:teuthology.orchestra.run.smithi149.stdout:/tmp/tmp.QQTPH15Vow 2023-12-08T22:34:29.451 DEBUG:teuthology.orchestra.run.smithi149:> sudo cp /boot/grub/grub.cfg /tmp/tmp.QQTPH15Vow 2023-12-08T22:34:29.467 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 0666 /tmp/tmp.QQTPH15Vow 2023-12-08T22:34:29.555 DEBUG:teuthology.orchestra.remote:smithi149:/tmp/tmp.QQTPH15Vow is 9KB 2023-12-08T22:34:29.570 DEBUG:teuthology.orchestra.run.smithi149:> rm -fr /tmp/tmp.QQTPH15Vow 2023-12-08T22:34:29.576 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2023-12-08T22:34:29.631 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:34:29.631 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/grub.d/01_ceph_kernel 2023-12-08T22:34:29.631 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2023-12-08T22:34:29.677 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-91-generic 2023-12-08T22:34:29.678 DEBUG:teuthology.orchestra.run.smithi149:> sudo update-grub 2023-12-08T22:34:29.825 INFO:teuthology.orchestra.run.smithi040.stderr:Sourcing file `/etc/default/grub' 2023-12-08T22:34:29.831 INFO:teuthology.orchestra.run.smithi040.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2023-12-08T22:34:29.845 INFO:teuthology.orchestra.run.smithi040.stderr:Generating grub configuration file ... 2023-12-08T22:34:30.139 INFO:teuthology.orchestra.run.smithi040.stderr:Found linux image: /boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:34:30.151 INFO:teuthology.orchestra.run.smithi040.stderr:Found initrd image: /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:34:30.578 INFO:teuthology.orchestra.run.smithi040.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2023-12-08T22:34:30.589 INFO:teuthology.orchestra.run.smithi040.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2023-12-08T22:34:31.169 INFO:teuthology.orchestra.run.smithi149.stderr:Sourcing file `/etc/default/grub' 2023-12-08T22:34:31.175 INFO:teuthology.orchestra.run.smithi149.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2023-12-08T22:34:31.188 INFO:teuthology.orchestra.run.smithi149.stderr:Generating grub configuration file ... 2023-12-08T22:34:31.470 INFO:teuthology.orchestra.run.smithi149.stderr:Found linux image: /boot/vmlinuz-5.15.0-91-generic 2023-12-08T22:34:31.482 INFO:teuthology.orchestra.run.smithi149.stderr:Found initrd image: /boot/initrd.img-5.15.0-91-generic 2023-12-08T22:34:31.601 INFO:teuthology.orchestra.run.smithi040.stderr:done 2023-12-08T22:34:31.603 DEBUG:teuthology.orchestra.run.smithi040:> sudo shutdown -r now 2023-12-08T22:34:31.841 INFO:teuthology.orchestra.run.smithi149.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2023-12-08T22:34:31.853 INFO:teuthology.orchestra.run.smithi149.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2023-12-08T22:34:32.650 INFO:teuthology.orchestra.run.smithi149.stderr:done 2023-12-08T22:34:32.651 DEBUG:teuthology.orchestra.run.smithi149:> sudo shutdown -r now 2023-12-08T22:35:01.635 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2023-12-08T22:35:01.635 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:35:01.636 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:35:02.655 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2023-12-08T22:35:02.656 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:35:02.656 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:35:20.039 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.40 2023-12-08T22:35:21.058 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.149 2023-12-08T22:35:29.048 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:35:29.049 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:35:30.060 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:35:30.061 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:35:33.126 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.149 2023-12-08T22:35:45.138 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:35:45.139 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:36:16.993 DEBUG:teuthology.orchestra.run.smithi149:> true 2023-12-08T22:36:17.790 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:36:17.791 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-91-generic"... 2023-12-08T22:36:17.791 DEBUG:teuthology.orchestra.run.smithi149:> uname -r 2023-12-08T22:36:17.842 INFO:teuthology.orchestra.run.smithi149.stdout:5.15.0-91-generic 2023-12-08T22:36:17.842 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-91-generic vs 5.15.0-91-generic 2023-12-08T22:36:17.842 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-12-08T22:36:17.842 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2023-12-08T22:36:18.842 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-12-08T22:36:18.843 DEBUG:teuthology.orchestra.run.smithi149:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-08T22:36:18.976 INFO:teuthology.orchestra.run.smithi149.stdout:ttyS1 2023-12-08T22:36:19.006 DEBUG:teuthology.parallel:result is None 2023-12-08T22:36:29.051 DEBUG:teuthology.orchestra.remote:timed out 2023-12-08T22:36:41.053 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:36:41.054 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:36:41.276 DEBUG:teuthology.orchestra.run.smithi040:> true 2023-12-08T22:36:41.799 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:36:41.800 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-91-generic"... 2023-12-08T22:36:41.800 DEBUG:teuthology.orchestra.run.smithi040:> uname -r 2023-12-08T22:36:41.846 INFO:teuthology.orchestra.run.smithi040.stdout:5.15.0-91-generic 2023-12-08T22:36:41.847 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-91-generic vs 5.15.0-91-generic 2023-12-08T22:36:41.847 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-12-08T22:36:41.847 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2023-12-08T22:36:42.848 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-12-08T22:36:42.848 DEBUG:teuthology.orchestra.run.smithi040:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-08T22:36:42.941 INFO:teuthology.orchestra.run.smithi040.stdout:ttyS1 2023-12-08T22:36:42.967 DEBUG:teuthology.parallel:result is None 2023-12-08T22:36:42.968 INFO:teuthology.run_tasks:Running task internal.base... 2023-12-08T22:36:42.974 INFO:teuthology.task.internal:Creating test directory... 2023-12-08T22:36:42.975 DEBUG:teuthology.orchestra.run.smithi040:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-08T22:36:42.977 DEBUG:teuthology.orchestra.run.smithi149:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-08T22:36:42.985 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-12-08T22:36:42.994 INFO:teuthology.run_tasks:Running task internal.archive... 2023-12-08T22:36:43.007 INFO:teuthology.task.internal:Creating archive directory... 2023-12-08T22:36:43.007 DEBUG:teuthology.orchestra.run.smithi040:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-08T22:36:43.026 DEBUG:teuthology.orchestra.run.smithi149:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-08T22:36:43.098 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-12-08T22:36:43.110 INFO:teuthology.task.internal:Enabling coredump saving... 2023-12-08T22:36:43.110 DEBUG:teuthology.orchestra.run.smithi040:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-08T22:36:43.113 DEBUG:teuthology.orchestra.run.smithi149:> 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 2023-12-08T22:36:43.128 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-08T22:36:43.136 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-08T22:36:43.136 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-08T22:36:43.145 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-08T22:36:43.146 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-12-08T22:36:43.158 INFO:teuthology.task.internal:Configuring sudo... 2023-12-08T22:36:43.158 DEBUG:teuthology.orchestra.run.smithi040:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-08T22:36:43.183 DEBUG:teuthology.orchestra.run.smithi149:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-08T22:36:43.204 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-12-08T22:36:43.217 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-12-08T22:36:43.217 DEBUG:teuthology.orchestra.run.smithi040:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-08T22:36:43.238 DEBUG:teuthology.orchestra.run.smithi149:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-08T22:36:43.254 DEBUG:teuthology.orchestra.run.smithi040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-08T22:36:43.291 DEBUG:teuthology.orchestra.run.smithi040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-08T22:36:43.339 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:36:43.340 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-08T22:36:43.405 DEBUG:teuthology.orchestra.run.smithi149:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-08T22:36:43.413 DEBUG:teuthology.orchestra.run.smithi149:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-08T22:36:43.463 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:36:43.463 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-08T22:36:43.528 DEBUG:teuthology.orchestra.run.smithi040:> sudo service rsyslog restart 2023-12-08T22:36:43.530 DEBUG:teuthology.orchestra.run.smithi149:> sudo service rsyslog restart 2023-12-08T22:36:43.609 INFO:teuthology.run_tasks:Running task internal.timer... 2023-12-08T22:36:43.619 INFO:teuthology.task.internal:Starting timer... 2023-12-08T22:36:43.619 INFO:teuthology.run_tasks:Running task pcp... 2023-12-08T22:36:43.637 INFO:teuthology.run_tasks:Running task selinux... 2023-12-08T22:36:43.659 DEBUG:teuthology.task.selinux:Excluding smithi040: OS 'ubuntu' does not support SELinux 2023-12-08T22:36:43.659 DEBUG:teuthology.task.selinux:Excluding smithi149: OS 'ubuntu' does not support SELinux 2023-12-08T22:36:43.659 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-12-08T22:36:43.660 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2023-12-08T22:36:43.660 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-12-08T22:36:43.660 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-12-08T22:36:43.675 INFO:teuthology.repo_utils:/home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main was just updated or references a specific commit; assuming it is current 2023-12-08T22:36:43.676 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-12-08T22:36:43.692 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'}]}] 2023-12-08T22:36:43.693 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi040.front.sepia.ceph.com,smithi149.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-12-08T22:42:44.763 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi040.front.sepia.ceph.com'), Remote(name='ubuntu@smithi149.front.sepia.ceph.com')] 2023-12-08T22:42:44.764 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:42:44.765 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:42:44.858 DEBUG:teuthology.orchestra.run.smithi040:> true 2023-12-08T22:42:44.980 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi040.front.sepia.ceph.com' 2023-12-08T22:42:44.980 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:42:44.981 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi149.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-08T22:42:45.069 DEBUG:teuthology.orchestra.run.smithi149:> true 2023-12-08T22:42:45.191 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi149.front.sepia.ceph.com' 2023-12-08T22:42:45.191 INFO:teuthology.run_tasks:Running task clock... 2023-12-08T22:42:45.202 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-12-08T22:42:45.202 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-08T22:42:45.203 DEBUG:teuthology.orchestra.run.smithi040:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-08T22:42:45.205 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-08T22:42:45.205 DEBUG:teuthology.orchestra.run.smithi149:> 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 2023-12-08T22:42:45.239 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: ntpd 4.2.8p12@1.3728-o (1): Starting 2023-12-08T22:42:45.240 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Command line: ntpd -gq 2023-12-08T22:42:45.241 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: proto: precision = 0.105 usec (-23) 2023-12-08T22:42:45.241 INFO:teuthology.orchestra.run.smithi040.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2023-12-08T22:42:45.241 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2023-12-08T22:42:45.241 INFO:teuthology.orchestra.run.smithi040.stderr:restrict ::: KOD does nothing without LIMITED. 2023-12-08T22:42:45.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: restrict ::: KOD does nothing without LIMITED. 2023-12-08T22:42:45.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen and drop on 0 v6wildcard [::]:123 2023-12-08T22:42:45.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2023-12-08T22:42:45.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen normally on 2 lo 127.0.0.1:123 2023-12-08T22:42:45.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen normally on 3 ens1f0 172.21.15.40:123 2023-12-08T22:42:45.243 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen normally on 4 lo [::1]:123 2023-12-08T22:42:45.243 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:12cc%4]:123 2023-12-08T22:42:45.243 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:45 ntpd[23350]: Listening on routing socket on fd #22 for interface updates 2023-12-08T22:42:45.267 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: ntpd 4.2.8p12@1.3728-o (1): Starting 2023-12-08T22:42:45.267 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Command line: ntpd -gq 2023-12-08T22:42:45.268 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: proto: precision = 0.094 usec (-23) 2023-12-08T22:42:45.269 INFO:teuthology.orchestra.run.smithi149.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2023-12-08T22:42:45.269 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2023-12-08T22:42:45.269 INFO:teuthology.orchestra.run.smithi149.stderr:restrict ::: KOD does nothing without LIMITED. 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: restrict ::: KOD does nothing without LIMITED. 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen and drop on 0 v6wildcard [::]:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen normally on 2 lo 127.0.0.1:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen normally on 3 enp3s0f1 172.21.15.149:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen normally on 4 lo [::1]:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7d57%5]:123 2023-12-08T22:42:45.270 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:45 ntpd[23390]: Listening on routing socket on fd #22 for interface updates 2023-12-08T22:42:46.240 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:46.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:46.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:46.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:46.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:46.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:46 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:46.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:46.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:46.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:46.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:46.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:46.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:46 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:47.240 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:47.240 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:47.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:47.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:47.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:47.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:47 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:47.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:47 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:47.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:47 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.240 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.240 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:48.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:48 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:48.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:48.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:48.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:48.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:48.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:48 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:49.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:49.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:49.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:49.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:49.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:49.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:49 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:49.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:49.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:49.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:49.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:49.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:49.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:49 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:50.242 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:50 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:50.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:50.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:50.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:50 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:51.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:51 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:51.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:51.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:51.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:51.268 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:51.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:51.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:51 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:52.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.241 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.242 INFO:teuthology.orchestra.run.smithi040.stdout: 8 Dec 22:42:52 ntpd[23350]: ntpd: time slew +0.005041 s 2023-12-08T22:42:52.242 INFO:teuthology.orchestra.run.smithi040.stdout:ntpd: time slew +0.005041s 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2023-12-08T22:42:52.243 INFO:teuthology.orchestra.run.smithi040.stderr: 8 Dec 22:42:52 ntpd[23350]: can't open /var/log/ntpstats/loopstats.20231208: Permission denied 2023-12-08T22:42:52.269 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: can't open /var/log/ntpstats/rawstats.20231208: Permission denied 2023-12-08T22:42:52.270 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2023-12-08T22:42:52.271 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: can't open /var/log/ntpstats/peerstats.20231208: Permission denied 2023-12-08T22:42:52.271 INFO:teuthology.orchestra.run.smithi149.stdout: 8 Dec 22:42:52 ntpd[23390]: ntpd: time slew +0.001720 s 2023-12-08T22:42:52.271 INFO:teuthology.orchestra.run.smithi149.stdout:ntpd: time slew +0.001720s 2023-12-08T22:42:52.272 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2023-12-08T22:42:52.272 INFO:teuthology.orchestra.run.smithi149.stderr: 8 Dec 22:42:52 ntpd[23390]: can't open /var/log/ntpstats/loopstats.20231208: Permission denied 2023-12-08T22:42:52.297 INFO:teuthology.orchestra.run.smithi040.stdout: remote refid st t when poll reach delay offset jitter 2023-12-08T22:42:52.297 INFO:teuthology.orchestra.run.smithi040.stdout:============================================================================== 2023-12-08T22:42:52.297 INFO:teuthology.orchestra.run.smithi040.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.298 INFO:teuthology.orchestra.run.smithi040.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.298 INFO:teuthology.orchestra.run.smithi040.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.298 INFO:teuthology.orchestra.run.smithi040.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.326 INFO:teuthology.orchestra.run.smithi149.stdout: remote refid st t when poll reach delay offset jitter 2023-12-08T22:42:52.326 INFO:teuthology.orchestra.run.smithi149.stdout:============================================================================== 2023-12-08T22:42:52.326 INFO:teuthology.orchestra.run.smithi149.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.326 INFO:teuthology.orchestra.run.smithi149.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.326 INFO:teuthology.orchestra.run.smithi149.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.327 INFO:teuthology.orchestra.run.smithi149.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2023-12-08T22:42:52.327 INFO:teuthology.run_tasks:Running task nvme_loop... 2023-12-08T22:42:52.338 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2023-12-08T22:42:52.339 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:42:52.339 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:42:52.347 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-12-08T22:42:52.348 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/vg_nvme/lv_1 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 493 Links: 1 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:41:12.437794434 +0000 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:41:12.105926258 +0000 2023-12-08T22:42:52.396 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:41:12.105926258 +0000 2023-12-08T22:42:52.397 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:42:52.397 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-12-08T22:42:52.451 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:42:52.451 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:42:52.451 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000392934 s, 1.3 MB/s 2023-12-08T22:42:52.452 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-12-08T22:42:52.501 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/vg_nvme/lv_2 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 502 Links: 1 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:41:12.941594316 +0000 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:41:12.617722963 +0000 2023-12-08T22:42:52.552 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:41:12.617722963 +0000 2023-12-08T22:42:52.553 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:42:52.553 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-12-08T22:42:52.608 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:42:52.608 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:42:52.608 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000402721 s, 1.3 MB/s 2023-12-08T22:42:52.609 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-12-08T22:42:52.662 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/vg_nvme/lv_3 2023-12-08T22:42:52.712 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-12-08T22:42:52.712 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:52.712 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 508 Links: 1 2023-12-08T22:42:52.712 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:52.713 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:41:13.489382571 +0000 2023-12-08T22:42:52.713 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:41:13.145515032 +0000 2023-12-08T22:42:52.713 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:41:13.145515032 +0000 2023-12-08T22:42:52.713 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:42:52.713 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-12-08T22:42:52.766 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:42:52.766 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:42:52.766 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000401218 s, 1.3 MB/s 2023-12-08T22:42:52.770 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-12-08T22:42:52.822 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/vg_nvme/lv_4 2023-12-08T22:42:52.877 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-12-08T22:42:52.877 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:52.877 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 511 Links: 1 2023-12-08T22:42:52.877 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:52.878 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:41:13.733288616 +0000 2023-12-08T22:42:52.878 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:41:13.729290157 +0000 2023-12-08T22:42:52.878 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:41:13.729290157 +0000 2023-12-08T22:42:52.878 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:42:52.879 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-12-08T22:42:52.934 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:42:52.934 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:42:52.934 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000419214 s, 1.2 MB/s 2023-12-08T22:42:52.935 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-12-08T22:42:52.986 DEBUG:teuthology.orchestra.run.smithi040:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2023-12-08T22:42:53.112 INFO:teuthology.orchestra.run.smithi040.stdout:loop 2023-12-08T22:42:53.113 INFO:tasks.nvme_loop:Connecting nvme_loop smithi040:/dev/vg_nvme/lv_1... 2023-12-08T22:42:53.113 DEBUG:teuthology.orchestra.run.smithi040:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2023-12-08T22:42:53.138 INFO:teuthology.orchestra.run.smithi040.stdout:1 2023-12-08T22:42:53.162 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/vg_nvme/lv_11 2023-12-08T22:42:53.186 INFO:tasks.nvme_loop:Connecting nvme_loop smithi040:/dev/vg_nvme/lv_2... 2023-12-08T22:42:53.186 DEBUG:teuthology.orchestra.run.smithi040:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2023-12-08T22:42:53.251 INFO:teuthology.orchestra.run.smithi040.stdout:1 2023-12-08T22:42:53.278 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/vg_nvme/lv_21 2023-12-08T22:42:53.302 INFO:tasks.nvme_loop:Connecting nvme_loop smithi040:/dev/vg_nvme/lv_3... 2023-12-08T22:42:53.302 DEBUG:teuthology.orchestra.run.smithi040:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2023-12-08T22:42:53.367 INFO:teuthology.orchestra.run.smithi040.stdout:1 2023-12-08T22:42:53.392 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/vg_nvme/lv_31 2023-12-08T22:42:53.413 INFO:tasks.nvme_loop:Connecting nvme_loop smithi040:/dev/vg_nvme/lv_4... 2023-12-08T22:42:53.414 DEBUG:teuthology.orchestra.run.smithi040:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2023-12-08T22:42:53.483 INFO:teuthology.orchestra.run.smithi040.stdout:1 2023-12-08T22:42:53.509 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/vg_nvme/lv_41 2023-12-08T22:42:53.532 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:42:53.532 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:42:53.581 DEBUG:teuthology.orchestra.run.smithi040:> sudo nvme list 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:Node SN Model Namespace Usage Format FW Rev 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/nvme0n1 CVFT5330009J400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/nvme1n1 44e525e342fc5df4ccb7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/nvme2n1 36a6ef1b3b435515f6e8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/nvme3n1 6e85ec72eecfe6b97e76 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:53.640 INFO:teuthology.orchestra.run.smithi040.stdout:/dev/nvme4n1 e3a88cde231ebcf4b8a6 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:53.641 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-08T22:42:53.641 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:42:53.641 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/scratch_devs 2023-12-08T22:42:53.699 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:42:53.699 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:42:53.706 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-12-08T22:42:53.706 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_1 2023-12-08T22:42:53.756 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-12-08T22:42:53.756 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:53.756 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 490 Links: 1 2023-12-08T22:42:53.756 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:53.756 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:41:12.432186951 +0000 2023-12-08T22:42:53.757 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:41:12.076195157 +0000 2023-12-08T22:42:53.757 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:41:12.076195157 +0000 2023-12-08T22:42:53.757 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:42:53.757 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-12-08T22:42:53.810 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:42:53.810 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:42:53.810 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000392694 s, 1.3 MB/s 2023-12-08T22:42:53.811 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-12-08T22:42:53.861 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_2 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 497 Links: 1 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:41:13.000173859 +0000 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:41:12.668181511 +0000 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:41:12.668181511 +0000 2023-12-08T22:42:53.912 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:42:53.912 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-12-08T22:42:53.967 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:42:53.967 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:42:53.967 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000374232 s, 1.4 MB/s 2023-12-08T22:42:53.968 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-12-08T22:42:54.017 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_3 2023-12-08T22:42:54.068 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-12-08T22:42:54.068 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:54.068 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 502 Links: 1 2023-12-08T22:42:54.068 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:54.068 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:41:13.564160858 +0000 2023-12-08T22:42:54.069 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:41:13.244168234 +0000 2023-12-08T22:42:54.069 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:41:13.244168234 +0000 2023-12-08T22:42:54.069 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:42:54.069 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-12-08T22:42:54.127 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:42:54.127 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:42:54.127 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000396997 s, 1.3 MB/s 2023-12-08T22:42:54.128 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-12-08T22:42:54.181 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/vg_nvme/lv_4 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 509 Links: 1 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:41:14.092148687 +0000 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:41:13.776155972 +0000 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:41:13.776155972 +0000 2023-12-08T22:42:54.232 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:42:54.232 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-12-08T22:42:54.287 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:42:54.287 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:42:54.287 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000412314 s, 1.2 MB/s 2023-12-08T22:42:54.288 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-12-08T22:42:54.341 DEBUG:teuthology.orchestra.run.smithi149:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2023-12-08T22:42:54.477 INFO:teuthology.orchestra.run.smithi149.stdout:loop 2023-12-08T22:42:54.479 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_1... 2023-12-08T22:42:54.479 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2023-12-08T22:42:54.501 INFO:teuthology.orchestra.run.smithi149.stdout:1 2023-12-08T22:42:54.531 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_11 2023-12-08T22:42:54.554 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_2... 2023-12-08T22:42:54.555 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2023-12-08T22:42:54.621 INFO:teuthology.orchestra.run.smithi149.stdout:1 2023-12-08T22:42:54.647 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_21 2023-12-08T22:42:54.671 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_3... 2023-12-08T22:42:54.671 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2023-12-08T22:42:54.735 INFO:teuthology.orchestra.run.smithi149.stdout:1 2023-12-08T22:42:54.761 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_31 2023-12-08T22:42:54.785 INFO:tasks.nvme_loop:Connecting nvme_loop smithi149:/dev/vg_nvme/lv_4... 2023-12-08T22:42:54.785 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2023-12-08T22:42:54.850 INFO:teuthology.orchestra.run.smithi149.stdout:1 2023-12-08T22:42:54.873 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/vg_nvme/lv_41 2023-12-08T22:42:54.893 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:42:54.893 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:42:54.943 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme list 2023-12-08T22:42:54.999 INFO:teuthology.orchestra.run.smithi149.stdout:Node SN Model Namespace Usage Format FW Rev 2023-12-08T22:42:54.999 INFO:teuthology.orchestra.run.smithi149.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-12-08T22:42:54.999 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme0n1 CVFT623300CK400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-12-08T22:42:54.999 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme1n1 30ace6ec8ed0f98af149 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:54.999 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme2n1 3922da7460681edf4385 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:55.000 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme3n1 feee61a29db38c88eb11 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:55.000 INFO:teuthology.orchestra.run.smithi149.stdout:/dev/nvme4n1 a96efb473f564fa54628 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2023-12-08T22:42:55.000 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-08T22:42:55.001 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:42:55.001 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/scratch_devs 2023-12-08T22:42:55.058 INFO:teuthology.run_tasks:Running task cephadm... 2023-12-08T22:42:55.132 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': '451ceae11b5d4caee05e94372fe658621eefc0b1'} 2023-12-08T22:42:55.132 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 2023-12-08T22:42:55.132 INFO:tasks.cephadm:Cluster fsid is 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:42:55.133 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2023-12-08T22:42:55.133 INFO:tasks.cephadm:No mon roles; fabricating mons 2023-12-08T22:42:55.133 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi040': '172.21.15.40', 'mon.smithi149': '172.21.15.149'} 2023-12-08T22:42:55.133 INFO:tasks.cephadm:Normalizing hostnames... 2023-12-08T22:42:55.133 DEBUG:teuthology.orchestra.run.smithi040:> sudo hostname $(hostname -s) 2023-12-08T22:42:55.149 DEBUG:teuthology.orchestra.run.smithi149:> sudo hostname $(hostname -s) 2023-12-08T22:42:55.165 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 451ceae11b5d4caee05e94372fe658621eefc0b1)... 2023-12-08T22:42:55.165 DEBUG:teuthology.orchestra.run.smithi040:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/451ceae11b5d4caee05e94372fe658621eefc0b1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.529 INFO:teuthology.orchestra.run.smithi040.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Dec 8 22:42 /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.529 DEBUG:teuthology.orchestra.run.smithi149:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/451ceae11b5d4caee05e94372fe658621eefc0b1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.936 INFO:teuthology.orchestra.run.smithi149.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Dec 8 22:42 /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.936 DEBUG:teuthology.orchestra.run.smithi040:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.945 DEBUG:teuthology.orchestra.run.smithi149:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-12-08T22:42:55.961 DEBUG:teuthology.orchestra.run.smithi040:> sudo mkdir -p /etc/ceph 2023-12-08T22:42:56.003 DEBUG:teuthology.orchestra.run.smithi149:> sudo mkdir -p /etc/ceph 2023-12-08T22:42:56.020 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod 777 /etc/ceph 2023-12-08T22:42:56.065 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 777 /etc/ceph 2023-12-08T22:42:56.080 INFO:tasks.cephadm:Writing seed config... 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [mon] debug mon = 20 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [mon] debug ms = 1 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [osd] debug ms = 1 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [osd] debug osd = 20 2023-12-08T22:42:56.081 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2023-12-08T22:42:56.082 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:42:56.082 DEBUG:teuthology.orchestra.run.smithi040:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2023-12-08T22:42:56.115 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false 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 ruleset-failure-domain=osd 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 = 20a983fc-961b-11ee-95a3-87774f69a715 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 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 [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 2023-12-08T22:42:56.115 DEBUG:teuthology.orchestra.run.smithi040:mon.smithi040> sudo journalctl -f -n 0 -u ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service 2023-12-08T22:42:56.158 INFO:tasks.cephadm:Bootstrapping... 2023-12-08T22:42:56.158 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 -v bootstrap --fsid 20a983fc-961b-11ee-95a3-87774f69a715 --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-ip 172.21.15.40 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2023-12-08T22:42:56.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2023-12-08T22:42:56.538 INFO:teuthology.orchestra.run.smithi040.stderr:-------------------------------------------------------------------------------- 2023-12-08T22:42:56.538 INFO:teuthology.orchestra.run.smithi040.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1', '-v', 'bootstrap', '--fsid', '20a983fc-961b-11ee-95a3-87774f69a715', '--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-ip', '172.21.15.40', '--skip-admin-label'] 2023-12-08T22:42:56.539 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying podman|docker is present... 2023-12-08T22:42:56.539 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying lvm2 is present... 2023-12-08T22:42:56.539 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying time synchronization is in place... 2023-12-08T22:42:56.546 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-12-08T22:42:56.553 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.560 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2023-12-08T22:42:56.567 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.574 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: masked 2023-12-08T22:42:56.580 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.586 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2023-12-08T22:42:56.593 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.601 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: enabled 2023-12-08T22:42:56.608 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: active 2023-12-08T22:42:56.609 INFO:teuthology.orchestra.run.smithi040.stderr:Unit ntp.service is enabled and running 2023-12-08T22:42:56.609 INFO:teuthology.orchestra.run.smithi040.stderr:Repeating the final host check... 2023-12-08T22:42:56.609 INFO:teuthology.orchestra.run.smithi040.stderr:docker (/usr/bin/docker) is present 2023-12-08T22:42:56.609 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl is present 2023-12-08T22:42:56.610 INFO:teuthology.orchestra.run.smithi040.stderr:lvcreate is present 2023-12-08T22:42:56.615 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-12-08T22:42:56.621 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.627 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2023-12-08T22:42:56.633 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.639 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: masked 2023-12-08T22:42:56.645 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.653 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2023-12-08T22:42:56.659 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: inactive 2023-12-08T22:42:56.667 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: enabled 2023-12-08T22:42:56.674 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: active 2023-12-08T22:42:56.675 INFO:teuthology.orchestra.run.smithi040.stderr:Unit ntp.service is enabled and running 2023-12-08T22:42:56.675 INFO:teuthology.orchestra.run.smithi040.stderr:Host looks OK 2023-12-08T22:42:56.675 INFO:teuthology.orchestra.run.smithi040.stderr:Cluster fsid: 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:42:56.675 INFO:teuthology.orchestra.run.smithi040.stderr:Acquiring lock 139933769333152 on /run/cephadm/20a983fc-961b-11ee-95a3-87774f69a715.lock 2023-12-08T22:42:56.676 INFO:teuthology.orchestra.run.smithi040.stderr:Lock 139933769333152 acquired on /run/cephadm/20a983fc-961b-11ee-95a3-87774f69a715.lock 2023-12-08T22:42:56.676 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying IP 172.21.15.40 port 3300 ... 2023-12-08T22:42:56.676 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying IP 172.21.15.40 port 6789 ... 2023-12-08T22:42:56.676 INFO:teuthology.orchestra.run.smithi040.stderr:Base mon IP(s) is [172.21.15.40:3300, 172.21.15.40:6789], mon addrv is [v2:172.21.15.40:3300,v1:172.21.15.40:6789] 2023-12-08T22:42:56.681 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: default via 172.21.15.254 dev ens1f0 2023-12-08T22:42:56.681 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2023-12-08T22:42:56.681 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.40 2023-12-08T22:42:56.686 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2023-12-08T22:42:56.686 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2023-12-08T22:42:56.686 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1793sec hoplimit 64 pref medium 2023-12-08T22:42:56.690 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2023-12-08T22:42:56.690 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: inet6 ::1/128 scope host 2023-12-08T22:42:56.690 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2023-12-08T22:42:56.691 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: 4: ens1f0: mtu 1500 state UP qlen 1000 2023-12-08T22:42:56.691 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: inet6 fe80::ec4:7aff:febd:12cc/64 scope link 2023-12-08T22:42:56.691 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2023-12-08T22:42:56.692 INFO:teuthology.orchestra.run.smithi040.stderr:Mon IP `172.21.15.40` is in CIDR network `172.21.0.0/20` 2023-12-08T22:42:56.692 INFO:teuthology.orchestra.run.smithi040.stderr:Mon IP `172.21.15.40` is in CIDR network `172.21.0.0/20` 2023-12-08T22:42:56.692 INFO:teuthology.orchestra.run.smithi040.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2023-12-08T22:42:56.692 INFO:teuthology.orchestra.run.smithi040.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2023-12-08T22:42:56.693 INFO:teuthology.orchestra.run.smithi040.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1... 2023-12-08T22:42:57.098 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: 451ceae11b5d4caee05e94372fe658621eefc0b1: Pulling from ceph-ci/ceph 2023-12-08T22:42:57.101 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: d3e436ac93e4: Pulling fs layer 2023-12-08T22:42:57.101 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: eb7ecf2ef1f5: Pulling fs layer 2023-12-08T22:43:01.100 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: d3e436ac93e4: Download complete 2023-12-08T22:43:05.003 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: d3e436ac93e4: Pull complete 2023-12-08T22:43:13.191 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: eb7ecf2ef1f5: Verifying Checksum 2023-12-08T22:43:25.862 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: eb7ecf2ef1f5: Pull complete 2023-12-08T22:43:26.002 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: Digest: sha256:002e2d98e891dc1f8c7b5834f520b217cdde6341d0e91399400dfe4f4a368726 2023-12-08T22:43:26.054 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 2023-12-08T22:43:26.085 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 2023-12-08T22:43:38.693 INFO:teuthology.orchestra.run.smithi040.stderr:ceph: ceph version 16.2.14-365-g451ceae1 (451ceae11b5d4caee05e94372fe658621eefc0b1) pacific (stable) 2023-12-08T22:43:39.329 INFO:teuthology.orchestra.run.smithi040.stderr:Ceph version: ceph version 16.2.14-365-g451ceae1 (451ceae11b5d4caee05e94372fe658621eefc0b1) pacific (stable) 2023-12-08T22:43:39.329 INFO:teuthology.orchestra.run.smithi040.stderr:Extracting ceph user uid/gid from container image... 2023-12-08T22:43:40.065 INFO:teuthology.orchestra.run.smithi040.stderr:stat: 167 167 2023-12-08T22:43:40.723 INFO:teuthology.orchestra.run.smithi040.stderr:Creating initial keys... 2023-12-08T22:43:41.535 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-authtool: AQAdnHNlUHS9HxAAkEPAvFGhrjJualtTGS6pPg== 2023-12-08T22:43:42.895 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-authtool: AQAenHNlK9orNRAAwXcSjF2sK2dVU1DwfFcYBw== 2023-12-08T22:43:44.360 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-authtool: AQAgnHNliXpTFRAA5B78h8phNdNj0ANWBSPKPg== 2023-12-08T22:43:44.970 INFO:teuthology.orchestra.run.smithi040.stderr:Creating initial monmap... 2023-12-08T22:43:45.795 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2023-12-08T22:43:45.795 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:45.795 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-12-08T22:43:46.341 INFO:teuthology.orchestra.run.smithi040.stderr:monmaptool for smithi040 [v2:172.21.15.40:3300,v1:172.21.15.40:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2023-12-08T22:43:46.341 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/monmaptool: set fsid to 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:46.341 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-12-08T22:43:46.341 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:43:46.341 INFO:teuthology.orchestra.run.smithi040.stderr:Creating mon... 2023-12-08T22:43:47.273 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.265+0000 7f9757d31880 0 set uid:gid to 167:167 (ceph:ceph) 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.265+0000 7f9757d31880 1 imported monmap: 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: epoch 0 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: fsid 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: last_changed 2023-12-08T22:43:45.791982+0000 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: created 2023-12-08T22:43:45.791982+0000 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: election_strategy: 1 2023-12-08T22:43:47.274 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0] mon.smithi040 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.265+0000 7f9757d31880 0 /usr/bin/ceph-mon: set fsid to 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: RocksDB version: 6.8.1 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Compile date Dec 7 2023 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: DB SUMMARY 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi040/store.db dir, Total Num: 0, files: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi040/store.db: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.error_if_exists: 0 2023-12-08T22:43:47.276 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.create_if_missing: 1 2023-12-08T22:43:47.277 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.paranoid_checks: 1 2023-12-08T22:43:47.277 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.env: 0x5653f69c2080 2023-12-08T22:43:47.277 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.fs: Posix File System 2023-12-08T22:43:47.277 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.info_log: 0x5653f7751380 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_file_opening_threads: 16 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.statistics: (nil) 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.use_fsync: 0 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_log_file_size: 0 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-12-08T22:43:47.298 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.keep_log_file_num: 1000 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.recycle_log_file_num: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.allow_fallocate: 1 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.allow_mmap_reads: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.allow_mmap_writes: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.use_direct_reads: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.create_missing_column_families: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.db_log_dir: 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi040/store.db 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_subcompactions: 1 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_background_flushes: -1 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-12-08T22:43:47.299 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.advise_random_on_open: 1 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.db_write_buffer_size: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.write_buffer_manager: 0x5653f7757980 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.rate_limiter: (nil) 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.wal_recovery_mode: 2 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.enable_thread_tracking: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.enable_pipelined_write: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.unordered_write: 0 2023-12-08T22:43:47.300 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.row_cache: None 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.wal_filter: None 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.allow_ingest_behind: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.preserve_deletes: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.two_write_queues: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.manual_wal_flush: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.atomic_flush: 0 2023-12-08T22:43:47.301 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.log_readahead_size: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_background_jobs: 2 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_background_compactions: -1 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_total_wal_size: 0 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-12-08T22:43:47.302 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_open_files: -1 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bytes_per_sync: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_readahead_size: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Compression algorithms supported: 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kZSTD supported: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kXpressCompression supported: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kLZ4HCCompression supported: 1 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kLZ4Compression supported: 1 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kBZip2Compression supported: 0 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kZlibCompression supported: 1 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: kSnappyCompression supported: 1 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-12-08T22:43:47.303 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi040/store.db/MANIFEST-000001 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.merge_operator: 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_filter: None 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_filter_factory: None 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5653f7665d30) 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2023-12-08T22:43:47.304 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: index_type: 0 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: index_shortening: 1 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: checksum: 1 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_cache: 0x5653f769cd10 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_cache_options: 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: capacity : 536870912 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2023-12-08T22:43:47.305 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_size: 4096 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: partition_filters: 0 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: verify_compression: 0 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: format_version: 2 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: block_align: 0 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.306 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression: NoCompression 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.num_levels: 7 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-08T22:43:47.307 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-08T22:43:47.308 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-08T22:43:47.309 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.table_properties_collectors: 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.inplace_update_support: 0 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-08T22:43:47.310 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.bloom_locality: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.max_successive_merges: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.ttl: 2592000 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi040/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.269+0000 7f9757d31880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.273+0000 7f9757d31880 4 rocksdb: DB pointer 0x5653f7765800 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.273+0000 7f9740bb8700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.273+0000 7f9740bb8700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-08T22:43:47.311 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-08T22:43:47.312 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.313 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:47.314 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 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 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.277+0000 7f9757d31880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.277+0000 7f9757d31880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2023-12-08T22:43:47.315 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph-mon: debug 2023-12-08T22:43:47.277+0000 7f9757d31880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi040 for mon.smithi040 2023-12-08T22:43:47.846 INFO:teuthology.orchestra.run.smithi040.stderr:create mon.smithi040 on 2023-12-08T22:43:48.081 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2023-12-08T22:43:48.271 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target -> /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target. 2023-12-08T22:43:48.271 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target -> /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target. 2023-12-08T22:43:48.712 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to reset failed state of unit ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service: Unit ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service not loaded. 2023-12-08T22:43:48.722 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Created symlink /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target.wants/ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service -> /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715@.service. 2023-12-08T22:43:48.947 INFO:teuthology.orchestra.run.smithi040.stderr:firewalld does not appear to be present 2023-12-08T22:43:48.947 INFO:teuthology.orchestra.run.smithi040.stderr:Not possible to enable service . firewalld.service is not available 2023-12-08T22:43:48.948 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mon to start... 2023-12-08T22:43:48.948 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mon... 2023-12-08T22:43:48.972 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:48 smithi040 systemd[1]: Started Ceph mon.smithi040 for 20a983fc-961b-11ee-95a3-87774f69a715. 2023-12-08T22:43:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:50 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.372641+0000 mon.smithi040 (mon.0) 0 : [INF] mkfs 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:50 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.363433+0000 mon.smithi040 (mon.0) 1 : cluster [INF] mon.smithi040 is new leader, mons smithi040 in quorum (ranks 0) 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: cluster: 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: id: 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: health: HEALTH_OK 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: services: 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi040 (age 0.288652s) 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mgr: no daemons active 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: data: 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2023-12-08T22:43:50.665 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: pgs: 2023-12-08T22:43:50.666 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:51.301 INFO:teuthology.orchestra.run.smithi040.stderr:mon is available 2023-12-08T22:43:51.301 INFO:teuthology.orchestra.run.smithi040.stderr:Assimilating anything we can from ceph.conf... 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.371301+0000 mon.smithi040 (mon.0) 2 : cluster [INF] mon.smithi040 is new leader, mons smithi040 in quorum (ranks 0) 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.371590+0000 mon.smithi040 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi040=[v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0]} removed_ranks: {} 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.374872+0000 mon.smithi040 (mon.0) 4 : cluster [DBG] fsmap 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.378547+0000 mon.smithi040 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: cluster 2023-12-08T22:43:50.379141+0000 mon.smithi040 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2023-12-08T22:43:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:51 smithi040 bash[24307]: audit 2023-12-08T22:43:50.659907+0000 mon.smithi040 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.40:0/2299385481' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2023-12-08T22:43:52.349 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:52.349 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [global] 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: fsid = 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.40:3300,v1:172.21.15.40:6789] 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-12-08T22:43:52.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:52.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [mgr] 2023-12-08T22:43:52.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-12-08T22:43:52.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:43:52.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [osd] 2023-12-08T22:43:52.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-12-08T22:43:52.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-12-08T22:43:52.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:52 smithi040 bash[24307]: audit 2023-12-08T22:43:52.338960+0000 mon.smithi040 (mon.0) 8 : audit [INF] from='client.? 172.21.15.40:0/3037908075' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-12-08T22:43:52.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:52 smithi040 bash[24307]: audit 2023-12-08T22:43:52.345492+0000 mon.smithi040 (mon.0) 9 : audit [INF] from='client.? 172.21.15.40:0/3037908075' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2023-12-08T22:43:52.997 INFO:teuthology.orchestra.run.smithi040.stderr:Generating new minimal ceph.conf... 2023-12-08T22:43:54.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:54 smithi040 bash[24307]: audit 2023-12-08T22:43:54.030601+0000 mon.smithi040 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.40:0/1665201710' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:43:54.677 INFO:teuthology.orchestra.run.smithi040.stderr:Restarting the monitor... 2023-12-08T22:43:55.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:54 smithi040 systemd[1]: Stopping Ceph mon.smithi040 for 20a983fc-961b-11ee-95a3-87774f69a715... 2023-12-08T22:43:55.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:54 smithi040 bash[24699]: Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon.smithi040 2023-12-08T22:43:55.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:54 smithi040 bash[24307]: debug 2023-12-08T22:43:54.869+0000 7fd49fbe8700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi040 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-08T22:43:55.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:54 smithi040 bash[24307]: debug 2023-12-08T22:43:54.869+0000 7fd49fbe8700 -1 mon.smithi040@0(leader) e1 *** Got Signal Terminated *** 2023-12-08T22:43:55.872 INFO:teuthology.orchestra.run.smithi040.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2023-12-08T22:43:56.037 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:55 smithi040 bash[24735]: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon-smithi040 2023-12-08T22:43:56.037 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:55 smithi040 bash[24798]: Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon-smithi040 2023-12-08T22:43:56.037 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:55 smithi040 systemd[1]: ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service: Succeeded. 2023-12-08T22:43:56.037 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:55 smithi040 systemd[1]: Stopped Ceph mon.smithi040 for 20a983fc-961b-11ee-95a3-87774f69a715. 2023-12-08T22:43:56.037 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:55 smithi040 systemd[1]: Started Ceph mon.smithi040 for 20a983fc-961b-11ee-95a3-87774f69a715. 2023-12-08T22:43:57.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.037+0000 7f07614bf880 0 set uid:gid to 167:167 (ceph:ceph) 2023-12-08T22:43:57.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.037+0000 7f07614bf880 0 ceph version 16.2.14-365-g451ceae1 (451ceae11b5d4caee05e94372fe658621eefc0b1) pacific (stable), process ceph-mon, pid 7 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.037+0000 7f07614bf880 0 pidfile_write: ignore empty --pid-file 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 0 load: jerasure load: lrc load: isa 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: RocksDB version: 6.8.1 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Compile date Dec 7 2023 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: DB SUMMARY 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: CURRENT file: CURRENT 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: IDENTITY file: IDENTITY 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi040/store.db dir, Total Num: 1, files: 000004.sst 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi040/store.db: 000006.log size: 86533 ; 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.error_if_exists: 0 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.create_if_missing: 0 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.paranoid_checks: 1 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.env: 0x55a0e5fc2080 2023-12-08T22:43:57.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.fs: Posix File System 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.info_log: 0x55a0e72a6520 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_file_opening_threads: 16 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.statistics: (nil) 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.use_fsync: 0 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_log_file_size: 0 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.keep_log_file_num: 1000 2023-12-08T22:43:57.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.recycle_log_file_num: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.allow_fallocate: 1 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.allow_mmap_reads: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.allow_mmap_writes: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.use_direct_reads: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.create_missing_column_families: 0 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.db_log_dir: 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi040/store.db 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_subcompactions: 1 2023-12-08T22:43:57.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_background_flushes: -1 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.advise_random_on_open: 1 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.db_write_buffer_size: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.write_buffer_manager: 0x55a0e7ef4480 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.rate_limiter: (nil) 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.wal_recovery_mode: 2 2023-12-08T22:43:57.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.enable_thread_tracking: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.enable_pipelined_write: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.unordered_write: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.row_cache: None 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.wal_filter: None 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.allow_ingest_behind: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.preserve_deletes: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.two_write_queues: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.manual_wal_flush: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.atomic_flush: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-12-08T22:43:57.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.log_readahead_size: 0 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_background_jobs: 2 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_background_compactions: -1 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_total_wal_size: 0 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-12-08T22:43:57.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_open_files: -1 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bytes_per_sync: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_readahead_size: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Compression algorithms supported: 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kZSTD supported: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kXpressCompression supported: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kLZ4HCCompression supported: 1 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kLZ4Compression supported: 1 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kBZip2Compression supported: 0 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kZlibCompression supported: 1 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: kSnappyCompression supported: 1 2023-12-08T22:43:57.267 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi040/store.db/MANIFEST-000005 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.merge_operator: 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_filter: None 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_filter_factory: None 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-12-08T22:43:57.268 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a0e7249d28) 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cache_index_and_filter_blocks: 1 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cache_index_and_filter_blocks_with_high_priority: 0 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: pin_l0_filter_and_index_blocks_in_cache: 0 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: pin_top_level_index_and_filter: 1 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: index_type: 0 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: data_block_index_type: 0 2023-12-08T22:43:57.269 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: index_shortening: 1 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: data_block_hash_table_util_ratio: 0.750000 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: hash_index_allow_collision: 1 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: checksum: 1 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: no_block_cache: 0 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_cache: 0x55a0e7280f10 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_cache_name: BinnedLRUCache 2023-12-08T22:43:57.270 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_cache_options: 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: capacity : 536870912 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: num_shard_bits : 4 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: strict_capacity_limit : 0 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: high_pri_pool_ratio: 0.000 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_cache_compressed: (nil) 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: persistent_cache: (nil) 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_size: 4096 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_size_deviation: 10 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_restart_interval: 16 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: index_block_restart_interval: 1 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: metadata_block_size: 4096 2023-12-08T22:43:57.271 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: partition_filters: 0 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: use_delta_encoding: 1 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: filter_policy: rocksdb.BuiltinBloomFilter 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: whole_key_filtering: 1 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: verify_compression: 0 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: read_amp_bytes_per_bit: 0 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: format_version: 2 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: enable_index_compression: 1 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: block_align: 0 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression: NoCompression 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.num_levels: 7 2023-12-08T22:43:57.272 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-08T22:43:57.273 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:43:57.274 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-08T22:43:57.275 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-08T22:43:57.276 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.table_properties_collectors: 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.inplace_update_support: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.bloom_locality: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.max_successive_merges: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.ttl: 2592000 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi040/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2023-12-08T22:43:57.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075437049206, "job": 1, "event": "recovery_started", "log_files": [6]} 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.045+0000 7f07614bf880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07614bf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075437050637, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83406, "table_properties": {"data_size": 81673, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9331, "raw_average_key_size": 47, "raw_value_size": 76185, "raw_average_value_size": 384, "num_data_blocks": 11, "num_entries": 198, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1702075437, "oldest_key_time": 3, "file_creation_time": 0}} 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07614bf880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07614bf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075437051335, "job": 1, "event": "recovery_finished"} 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07614bf880 4 rocksdb: DB pointer 0x55a0e7349800 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07482c5700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07482c5700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** DB Stats ** 2023-12-08T22:43:57.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** Compaction Stats [default] ** 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.279 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: L0 2/0 83.14 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Sum 2/0 83.14 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** Compaction Stats [default] ** 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Cumulative compaction: 0.00 GB write, 17.51 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Interval compaction: 0.00 GB write, 17.51 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:57.280 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** Compaction Stats [default] ** 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: L0 2/0 83.14 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Sum 2/0 83.14 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** Compaction Stats [default] ** 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 86.2 0.00 0.00 1 0.001 0 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:43:57.281 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Cumulative compaction: 0.00 GB write, 17.36 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.049+0000 7f07614bf880 0 starting mon.smithi040 rank 0 at public addrs [v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0] at bind addrs [v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi040 fsid 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 1 mon.smithi040@-1(???) e1 preinit fsid 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).mds e1 new map 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).mds e1 print_map 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: e1 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: enable_multiple, ever_enabled_multiple: 1,1 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 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} 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: legacy client fscid: -1 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: No filesystems configured 2023-12-08T22:43:57.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 0 mon.smithi040@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: audit 2023-12-08T22:43:54.030601+0000 mon.smithi040 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.40:0/1665201710' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: debug 2023-12-08T22:43:57.053+0000 7f07614bf880 1 mon.smithi040@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cluster 2023-12-08T22:43:57.079329+0000 mon.smithi040 (mon.0) 1 : cluster [INF] mon.smithi040 is new leader, mons smithi040 in quorum (ranks 0) 2023-12-08T22:43:57.283 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cluster 2023-12-08T22:43:57.079426+0000 mon.smithi040 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi040=[v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0]} removed_ranks: {} 2023-12-08T22:43:57.284 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cluster 2023-12-08T22:43:57.080255+0000 mon.smithi040 (mon.0) 3 : cluster [DBG] fsmap 2023-12-08T22:43:57.284 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cluster 2023-12-08T22:43:57.080316+0000 mon.smithi040 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-12-08T22:43:57.284 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:57 smithi040 bash[24841]: cluster 2023-12-08T22:43:57.080979+0000 mon.smithi040 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2023-12-08T22:43:58.149 INFO:teuthology.orchestra.run.smithi040.stderr:Wrote config to /etc/ceph/ceph.conf 2023-12-08T22:43:58.149 INFO:teuthology.orchestra.run.smithi040.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2023-12-08T22:43:58.149 INFO:teuthology.orchestra.run.smithi040.stderr:Creating mgr... 2023-12-08T22:43:58.150 INFO:teuthology.orchestra.run.smithi040.stderr:Verifying port 9283 ... 2023-12-08T22:43:58.387 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Failed to reset failed state of unit ceph-20a983fc-961b-11ee-95a3-87774f69a715@mgr.smithi040.evuiyl.service: Unit ceph-20a983fc-961b-11ee-95a3-87774f69a715@mgr.smithi040.evuiyl.service not loaded. 2023-12-08T22:43:58.395 INFO:teuthology.orchestra.run.smithi040.stderr:systemctl: Created symlink /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715.target.wants/ceph-20a983fc-961b-11ee-95a3-87774f69a715@mgr.smithi040.evuiyl.service -> /etc/systemd/system/ceph-20a983fc-961b-11ee-95a3-87774f69a715@.service. 2023-12-08T22:43:58.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:43:58 smithi040 bash[24841]: audit 2023-12-08T22:43:57.404442+0000 mon.smithi040 (mon.0) 6 : audit [INF] from='client.? 172.21.15.40:0/4177932349' entity='client.admin' 2023-12-08T22:43:58.614 INFO:teuthology.orchestra.run.smithi040.stderr:firewalld does not appear to be present 2023-12-08T22:43:58.614 INFO:teuthology.orchestra.run.smithi040.stderr:Not possible to enable service . firewalld.service is not available 2023-12-08T22:43:58.615 INFO:teuthology.orchestra.run.smithi040.stderr:firewalld does not appear to be present 2023-12-08T22:43:58.615 INFO:teuthology.orchestra.run.smithi040.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2023-12-08T22:43:58.615 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mgr to start... 2023-12-08T22:43:58.615 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mgr... 2023-12-08T22:44:00.342 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:00.342 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:00.342 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsid": "20a983fc-961b-11ee-95a3-87774f69a715", 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "health": { 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "checks": {}, 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mutes": [] 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum": [ 2023-12-08T22:44:00.344 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 0 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "smithi040" 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_age": 3, 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "monmap": { 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-08T22:44:00.345 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.346 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osdmap": { 2023-12-08T22:44:00.346 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:00.346 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.347 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgmap": { 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.350 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsmap": { 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "available": false, 2023-12-08T22:44:00.351 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modules": [ 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "iostat", 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "nfs", 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "restful" 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "servicemap": { 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modified": "2023-12-08T22:43:50.373130+0000", 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-08T22:44:00.352 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:00.563 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:00 smithi040 bash[24841]: audit 2023-12-08T22:44:00.338215+0000 mon.smithi040 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.40:0/1853731185' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-08T22:44:01.000 INFO:teuthology.orchestra.run.smithi040.stderr:mgr not available, waiting (1/15)... 2023-12-08T22:44:04.128 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:04.129 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:04.129 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsid": "20a983fc-961b-11ee-95a3-87774f69a715", 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "health": { 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "checks": {}, 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mutes": [] 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum": [ 2023-12-08T22:44:04.131 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 0 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "smithi040" 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_age": 7, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "monmap": { 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osdmap": { 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-08T22:44:04.132 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgmap": { 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-08T22:44:04.136 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsmap": { 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "available": false, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modules": [ 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "iostat", 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "nfs", 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "restful" 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.137 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "servicemap": { 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modified": "2023-12-08T22:43:50.373130+0000", 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-08T22:44:04.138 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:04.304 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:04 smithi040 bash[24841]: audit 2023-12-08T22:44:04.124535+0000 mon.smithi040 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.40:0/525953217' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-08T22:44:04.720 INFO:teuthology.orchestra.run.smithi040.stderr:mgr not available, waiting (2/15)... 2023-12-08T22:44:07.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: cluster 2023-12-08T22:44:06.880299+0000 mon.smithi040 (mon.0) 9 : cluster [INF] Activating manager daemon smithi040.evuiyl 2023-12-08T22:44:07.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: cluster 2023-12-08T22:44:06.886134+0000 mon.smithi040 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi040.evuiyl(active, starting, since 0.00609039s) 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.888123+0000 mon.smithi040 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.888297+0000 mon.smithi040 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.888474+0000 mon.smithi040 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.888649+0000 mon.smithi040 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.889133+0000 mon.smithi040 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi040.evuiyl", "id": "smithi040.evuiyl"}]: dispatch 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: cluster 2023-12-08T22:44:06.909568+0000 mon.smithi040 (mon.0) 16 : cluster [INF] Manager daemon smithi040.evuiyl is now available 2023-12-08T22:44:07.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:06 smithi040 bash[24841]: audit 2023-12-08T22:44:06.920593+0000 mon.smithi040 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:07.912 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:07.912 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:07.912 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsid": "20a983fc-961b-11ee-95a3-87774f69a715", 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "health": { 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "checks": {}, 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mutes": [] 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.915 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum": [ 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 0 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_names": [ 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "smithi040" 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "quorum_age": 10, 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "monmap": { 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_mons": 1 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.916 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osdmap": { 2023-12-08T22:44:07.917 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:07.917 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_osds": 0, 2023-12-08T22:44:07.917 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-12-08T22:44:07.917 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-12-08T22:44:07.917 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgmap": { 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_pools": 0, 2023-12-08T22:44:07.920 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_objects": 0, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "bytes_total": 0 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "fsmap": { 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "by_rank": [], 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "up:standby": 0 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mgrmap": { 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "available": true, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modules": [ 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "iostat", 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "nfs", 2023-12-08T22:44:07.921 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "restful" 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ], 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "servicemap": { 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 1, 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "modified": "2023-12-08T22:43:50.373130+0000", 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "services": {} 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: }, 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "progress_events": {} 2023-12-08T22:44:07.922 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: audit 2023-12-08T22:44:06.935817+0000 mon.smithi040 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/mirror_snapshot_schedule"}]: dispatch 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: audit 2023-12-08T22:44:06.939529+0000 mon.smithi040 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: audit 2023-12-08T22:44:06.939720+0000 mon.smithi040 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/trash_purge_schedule"}]: dispatch 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: audit 2023-12-08T22:44:06.941851+0000 mon.smithi040 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.40:0/1352540986' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: cluster 2023-12-08T22:44:07.893083+0000 mon.smithi040 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi040.evuiyl(active, since 1.01305s) 2023-12-08T22:44:08.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:07 smithi040 bash[24841]: audit 2023-12-08T22:44:07.907830+0000 mon.smithi040 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.40:0/4005848821' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-12-08T22:44:08.510 INFO:teuthology.orchestra.run.smithi040.stderr:mgr is available 2023-12-08T22:44:09.755 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:09.755 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [global] 2023-12-08T22:44:09.755 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: fsid = 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:44:09.756 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-12-08T22:44:09.756 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [mgr] 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: [osd] 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-12-08T22:44:09.757 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-12-08T22:44:10.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:09 smithi040 bash[24841]: cluster 2023-12-08T22:44:08.940464+0000 mon.smithi040 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi040.evuiyl(active, since 2s) 2023-12-08T22:44:10.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:09 smithi040 bash[24841]: audit 2023-12-08T22:44:09.750385+0000 mon.smithi040 (mon.0) 25 : audit [INF] from='client.? 172.21.15.40:0/2732493685' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-12-08T22:44:10.386 INFO:teuthology.orchestra.run.smithi040.stderr:Enabling cephadm module... 2023-12-08T22:44:12.131 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:11 smithi040 bash[24841]: audit 2023-12-08T22:44:11.775849+0000 mon.smithi040 (mon.0) 26 : audit [INF] from='client.? 172.21.15.40:0/3993258412' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2023-12-08T22:44:13.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:12 smithi040 bash[24841]: audit 2023-12-08T22:44:11.831993+0000 mon.smithi040 (mon.0) 27 : audit [INF] from='client.? 172.21.15.40:0/3993258412' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2023-12-08T22:44:13.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:12 smithi040 bash[24841]: cluster 2023-12-08T22:44:11.832126+0000 mon.smithi040 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi040.evuiyl(active, since 4s) 2023-12-08T22:44:13.941 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:13.942 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 5, 2023-12-08T22:44:13.942 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "available": true, 2023-12-08T22:44:13.942 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "active_name": "smithi040.evuiyl", 2023-12-08T22:44:13.942 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_standby": 0 2023-12-08T22:44:13.942 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:14.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:13 smithi040 bash[24841]: audit 2023-12-08T22:44:13.937692+0000 mon.smithi040 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.40:0/34493045' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-12-08T22:44:14.554 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for the mgr to restart... 2023-12-08T22:44:14.554 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mgr epoch 5... 2023-12-08T22:44:19.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: cluster 2023-12-08T22:44:18.664788+0000 mon.smithi040 (mon.0) 30 : cluster [INF] Active manager daemon smithi040.evuiyl restarted 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: cluster 2023-12-08T22:44:18.665232+0000 mon.smithi040 (mon.0) 31 : cluster [INF] Activating manager daemon smithi040.evuiyl 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: cluster 2023-12-08T22:44:18.671273+0000 mon.smithi040 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: cluster 2023-12-08T22:44:18.671522+0000 mon.smithi040 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi040.evuiyl(active, starting, since 0.00644931s) 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: audit 2023-12-08T22:44:18.672599+0000 mon.smithi040 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: audit 2023-12-08T22:44:18.673787+0000 mon.smithi040 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi040.evuiyl", "id": "smithi040.evuiyl"}]: dispatch 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: audit 2023-12-08T22:44:18.674826+0000 mon.smithi040 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: audit 2023-12-08T22:44:18.675066+0000 mon.smithi040 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: audit 2023-12-08T22:44:18.675266+0000 mon.smithi040 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-08T22:44:19.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:18 smithi040 bash[24841]: cluster 2023-12-08T22:44:18.699381+0000 mon.smithi040 (mon.0) 39 : cluster [INF] Manager daemon smithi040.evuiyl is now available 2023-12-08T22:44:19.692 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:19.692 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2023-12-08T22:44:19.693 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "initialized": true 2023-12-08T22:44:19.693 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:20.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: cephadm 2023-12-08T22:44:18.718019+0000 mgr.smithi040.evuiyl (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2023-12-08T22:44:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.726142+0000 mon.smithi040 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.850586+0000 mon.smithi040 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.852572+0000 mon.smithi040 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:44:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.855384+0000 mon.smithi040 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:44:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.858754+0000 mon.smithi040 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:44:20.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.884604+0000 mon.smithi040 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/mirror_snapshot_schedule"}]: dispatch 2023-12-08T22:44:20.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: audit 2023-12-08T22:44:18.889958+0000 mon.smithi040 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/trash_purge_schedule"}]: dispatch 2023-12-08T22:44:20.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:19 smithi040 bash[24841]: cluster 2023-12-08T22:44:19.675186+0000 mon.smithi040 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi040.evuiyl(active, since 1.01011s) 2023-12-08T22:44:20.344 INFO:teuthology.orchestra.run.smithi040.stderr:mgr epoch 5 is available 2023-12-08T22:44:20.344 INFO:teuthology.orchestra.run.smithi040.stderr:Setting orchestrator backend to cephadm... 2023-12-08T22:44:21.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:20 smithi040 bash[24841]: audit 2023-12-08T22:44:19.674562+0000 mgr.smithi040.evuiyl (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-12-08T22:44:21.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:20 smithi040 bash[24841]: audit 2023-12-08T22:44:19.688182+0000 mgr.smithi040.evuiyl (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-12-08T22:44:22.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:21 smithi040 bash[24841]: cluster 2023-12-08T22:44:20.729504+0000 mon.smithi040 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi040.evuiyl(active, since 2s) 2023-12-08T22:44:22.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:21 smithi040 bash[24841]: audit 2023-12-08T22:44:21.641789+0000 mon.smithi040 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:22.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:21 smithi040 bash[24841]: audit 2023-12-08T22:44:21.691503+0000 mon.smithi040 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:44:23.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:22 smithi040 bash[24841]: audit 2023-12-08T22:44:21.634857+0000 mgr.smithi040.evuiyl (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:23.630 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: value unchanged 2023-12-08T22:44:24.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:23 smithi040 bash[24841]: audit 2023-12-08T22:44:23.625636+0000 mgr.smithi040.evuiyl (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:24.265 INFO:teuthology.orchestra.run.smithi040.stderr:Generating ssh key... 2023-12-08T22:44:26.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:25 smithi040 bash[24841]: audit 2023-12-08T22:44:25.561558+0000 mgr.smithi040.evuiyl (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:26.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:25 smithi040 bash[24841]: cephadm 2023-12-08T22:44:25.561988+0000 mgr.smithi040.evuiyl (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2023-12-08T22:44:27.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:27 smithi040 bash[24841]: audit 2023-12-08T22:44:26.061662+0000 mon.smithi040 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:27.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:27 smithi040 bash[24841]: audit 2023-12-08T22:44:26.066131+0000 mon.smithi040 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:28.030 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDcf0unA1hIAxX+aJSo65Xk6H/eLpeyesU814jS222b9JfL2KrpteSVsfNGoVfwldZ7vIp0e5PuHD5Cu6fcfLJajwQcZKwVFZOnt36yMweuZuiqaqUjXV8rrt8jG1iaESsqQ99IqoGM1lEhpJf9pn1mgrwwtbP8LB8T9/A6Zyf0nI2McyqP1CwAZ0015J98b0vV+ri1+LQ6a3/3TdTexAaTScVk6H4TNVpPQsYQceiRco5/tkUkzTKpLc1cxHJa2e85TTTrcBZLtqUbKsblAxKlx33RKVtiNx12gUiFpGr25NgjZHz6Gg+YQnUlHqamrFEQRNNLYOM0TSmEuoOB4IkXm1wBX+JrYa2Ty33bcneBv3zyowNEEoFv3CaCYlkoUwXYATF5oJ8x+m5nv/NIQdzXpeSoX7vZXPhNvu6A54dgbV8385xosHwRcTK49n+QvDoLxaYnMceScCEaz4FfTkxg1ph5iJlFKARYIktnr3EeDJSXw8mZ4NxiG9FXmImoBRs= ceph-20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:44:28.687 INFO:teuthology.orchestra.run.smithi040.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2023-12-08T22:44:28.687 INFO:teuthology.orchestra.run.smithi040.stderr:Adding key to root@localhost authorized_keys... 2023-12-08T22:44:28.688 INFO:teuthology.orchestra.run.smithi040.stderr:Adding host smithi040... 2023-12-08T22:44:29.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:28 smithi040 bash[24841]: audit 2023-12-08T22:44:28.026515+0000 mgr.smithi040.evuiyl (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:30.835 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Added host 'smithi040' with addr '172.21.15.40' 2023-12-08T22:44:31.714 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying mon service with default placement... 2023-12-08T22:44:32.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:31 smithi040 bash[24841]: audit 2023-12-08T22:44:29.986918+0000 mgr.smithi040.evuiyl (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi040", "addr": "172.21.15.40", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:32.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:31 smithi040 bash[24841]: audit 2023-12-08T22:44:30.830610+0000 mon.smithi040 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:32.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:31 smithi040 bash[24841]: cephadm 2023-12-08T22:44:30.831197+0000 mgr.smithi040.evuiyl (mgr.14116) 10 : cephadm [INF] Added host smithi040 2023-12-08T22:44:32.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:31 smithi040 bash[24841]: audit 2023-12-08T22:44:30.845713+0000 mon.smithi040 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:44:33.618 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled mon update... 2023-12-08T22:44:34.507 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying mgr service with default placement... 2023-12-08T22:44:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:34 smithi040 bash[24841]: audit 2023-12-08T22:44:33.608395+0000 mgr.smithi040.evuiyl (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:35.021 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:34 smithi040 bash[24841]: cephadm 2023-12-08T22:44:33.611553+0000 mgr.smithi040.evuiyl (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2023-12-08T22:44:35.021 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:34 smithi040 bash[24841]: audit 2023-12-08T22:44:33.614512+0000 mon.smithi040 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:35.021 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:34 smithi040 bash[24841]: audit 2023-12-08T22:44:34.193277+0000 mon.smithi040 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:35.021 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:34 smithi040 bash[24841]: audit 2023-12-08T22:44:34.445681+0000 mon.smithi040 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:35.938 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled mgr update... 2023-12-08T22:44:36.556 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying crash service with default placement... 2023-12-08T22:44:37.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:36 smithi040 bash[24841]: audit 2023-12-08T22:44:35.927644+0000 mgr.smithi040.evuiyl (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:37.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:36 smithi040 bash[24841]: cephadm 2023-12-08T22:44:35.929672+0000 mgr.smithi040.evuiyl (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2023-12-08T22:44:37.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:36 smithi040 bash[24841]: audit 2023-12-08T22:44:35.933919+0000 mon.smithi040 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:37.890 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled crash update... 2023-12-08T22:44:38.553 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying prometheus service with default placement... 2023-12-08T22:44:39.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:38 smithi040 bash[24841]: audit 2023-12-08T22:44:37.878838+0000 mgr.smithi040.evuiyl (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:39.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:38 smithi040 bash[24841]: cephadm 2023-12-08T22:44:37.881200+0000 mgr.smithi040.evuiyl (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2023-12-08T22:44:39.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:38 smithi040 bash[24841]: audit 2023-12-08T22:44:37.885720+0000 mon.smithi040 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:39.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:38 smithi040 bash[24841]: cluster 2023-12-08T22:44:38.676706+0000 mgr.smithi040.evuiyl (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:39.895 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled prometheus update... 2023-12-08T22:44:40.594 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying grafana service with default placement... 2023-12-08T22:44:40.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:40 smithi040 bash[24841]: audit 2023-12-08T22:44:39.455350+0000 mon.smithi040 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:40.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:40 smithi040 bash[24841]: audit 2023-12-08T22:44:39.890967+0000 mon.smithi040 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:41.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:41 smithi040 bash[24841]: audit 2023-12-08T22:44:39.883514+0000 mgr.smithi040.evuiyl (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:41.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:41 smithi040 bash[24841]: cephadm 2023-12-08T22:44:39.885742+0000 mgr.smithi040.evuiyl (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2023-12-08T22:44:41.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:41 smithi040 bash[24841]: cluster 2023-12-08T22:44:40.677192+0000 mgr.smithi040.evuiyl (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:42.013 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled grafana update... 2023-12-08T22:44:42.694 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying node-exporter service with default placement... 2023-12-08T22:44:43.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:43 smithi040 bash[24841]: audit 2023-12-08T22:44:42.001887+0000 mgr.smithi040.evuiyl (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:43.277 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:43 smithi040 bash[24841]: cephadm 2023-12-08T22:44:42.004049+0000 mgr.smithi040.evuiyl (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2023-12-08T22:44:43.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:43 smithi040 bash[24841]: audit 2023-12-08T22:44:42.008565+0000 mon.smithi040 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:43.278 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:43 smithi040 bash[24841]: cluster 2023-12-08T22:44:42.677499+0000 mgr.smithi040.evuiyl (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:44.639 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2023-12-08T22:44:45.608 INFO:teuthology.orchestra.run.smithi040.stderr:Deploying alertmanager service with default placement... 2023-12-08T22:44:46.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:45 smithi040 bash[24841]: audit 2023-12-08T22:44:44.629709+0000 mgr.smithi040.evuiyl (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:46.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:45 smithi040 bash[24841]: cephadm 2023-12-08T22:44:44.630756+0000 mgr.smithi040.evuiyl (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2023-12-08T22:44:46.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:45 smithi040 bash[24841]: audit 2023-12-08T22:44:44.634953+0000 mon.smithi040 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:46.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:45 smithi040 bash[24841]: cluster 2023-12-08T22:44:44.677814+0000 mgr.smithi040.evuiyl (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:46.953 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2023-12-08T22:44:48.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:47 smithi040 bash[24841]: cluster 2023-12-08T22:44:46.678235+0000 mgr.smithi040.evuiyl (mgr.14116) 27 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:48.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:47 smithi040 bash[24841]: audit 2023-12-08T22:44:46.948672+0000 mon.smithi040 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.40:0/826940754' entity='mgr.smithi040.evuiyl' 2023-12-08T22:44:49.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:48 smithi040 bash[24841]: audit 2023-12-08T22:44:46.941745+0000 mgr.smithi040.evuiyl (mgr.14116) 28 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:44:49.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:48 smithi040 bash[24841]: cephadm 2023-12-08T22:44:46.944051+0000 mgr.smithi040.evuiyl (mgr.14116) 29 : cephadm [INF] Saving service alertmanager spec with placement count:1 2023-12-08T22:44:50.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:49 smithi040 bash[24841]: cluster 2023-12-08T22:44:48.678633+0000 mgr.smithi040.evuiyl (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:50.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:49 smithi040 bash[24841]: audit 2023-12-08T22:44:49.001747+0000 mon.smithi040 (mon.0) 65 : audit [INF] from='client.? 172.21.15.40:0/1139988158' entity='client.admin' 2023-12-08T22:44:51.662 INFO:teuthology.orchestra.run.smithi040.stderr:Enabling the dashboard module... 2023-12-08T22:44:52.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:51 smithi040 bash[24841]: cluster 2023-12-08T22:44:50.679119+0000 mgr.smithi040.evuiyl (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:52.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:51 smithi040 bash[24841]: audit 2023-12-08T22:44:50.915483+0000 mon.smithi040 (mon.0) 66 : audit [INF] from='client.? 172.21.15.40:0/1298989418' entity='client.admin' 2023-12-08T22:44:53.391 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:53 smithi040 bash[24841]: cluster 2023-12-08T22:44:52.679557+0000 mgr.smithi040.evuiyl (mgr.14116) 32 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:44:53.391 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:53 smithi040 bash[24841]: audit 2023-12-08T22:44:53.017031+0000 mon.smithi040 (mon.0) 67 : audit [INF] from='client.? 172.21.15.40:0/2804750375' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2023-12-08T22:44:54.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:54 smithi040 bash[24841]: audit 2023-12-08T22:44:53.082370+0000 mon.smithi040 (mon.0) 68 : audit [INF] from='client.? 172.21.15.40:0/2804750375' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2023-12-08T22:44:54.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:54 smithi040 bash[24841]: cluster 2023-12-08T22:44:53.082476+0000 mon.smithi040 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi040.evuiyl(active, since 34s) 2023-12-08T22:44:55.241 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:44:55.242 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "epoch": 9, 2023-12-08T22:44:55.242 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "available": true, 2023-12-08T22:44:55.242 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "active_name": "smithi040.evuiyl", 2023-12-08T22:44:55.242 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "num_standby": 0 2023-12-08T22:44:55.242 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:44:55.463 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:55 smithi040 bash[24841]: audit 2023-12-08T22:44:55.237145+0000 mon.smithi040 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.40:0/565576185' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-12-08T22:44:55.911 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for the mgr to restart... 2023-12-08T22:44:55.912 INFO:teuthology.orchestra.run.smithi040.stderr:Waiting for mgr epoch 9... 2023-12-08T22:45:00.138 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: cluster 2023-12-08T22:44:59.873015+0000 mon.smithi040 (mon.0) 71 : cluster [INF] Active manager daemon smithi040.evuiyl restarted 2023-12-08T22:45:00.138 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: cluster 2023-12-08T22:44:59.873592+0000 mon.smithi040 (mon.0) 72 : cluster [INF] Activating manager daemon smithi040.evuiyl 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: cluster 2023-12-08T22:44:59.881582+0000 mon.smithi040 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: cluster 2023-12-08T22:44:59.881819+0000 mon.smithi040 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi040.evuiyl(active, starting, since 0.00840655s) 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: audit 2023-12-08T22:44:59.883715+0000 mon.smithi040 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: audit 2023-12-08T22:44:59.884706+0000 mon.smithi040 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi040.evuiyl", "id": "smithi040.evuiyl"}]: dispatch 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: audit 2023-12-08T22:44:59.885857+0000 mon.smithi040 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: audit 2023-12-08T22:44:59.886148+0000 mon.smithi040 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: audit 2023-12-08T22:44:59.886408+0000 mon.smithi040 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-08T22:45:00.139 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:44:59 smithi040 bash[24841]: cluster 2023-12-08T22:44:59.889829+0000 mon.smithi040 (mon.0) 80 : cluster [INF] Manager daemon smithi040.evuiyl is now available 2023-12-08T22:45:00.905 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: { 2023-12-08T22:45:00.905 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2023-12-08T22:45:00.905 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: "initialized": true 2023-12-08T22:45:00.905 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: } 2023-12-08T22:45:01.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:00 smithi040 bash[24841]: audit 2023-12-08T22:45:00.028069+0000 mon.smithi040 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:45:01.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:00 smithi040 bash[24841]: audit 2023-12-08T22:45:00.030927+0000 mon.smithi040 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:45:01.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:00 smithi040 bash[24841]: audit 2023-12-08T22:45:00.073105+0000 mon.smithi040 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/mirror_snapshot_schedule"}]: dispatch 2023-12-08T22:45:01.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:00 smithi040 bash[24841]: audit 2023-12-08T22:45:00.077476+0000 mon.smithi040 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/trash_purge_schedule"}]: dispatch 2023-12-08T22:45:01.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:00 smithi040 bash[24841]: cluster 2023-12-08T22:45:00.883659+0000 mon.smithi040 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi040.evuiyl(active, since 1.01024s) 2023-12-08T22:45:01.570 INFO:teuthology.orchestra.run.smithi040.stderr:mgr epoch 9 is available 2023-12-08T22:45:01.570 INFO:teuthology.orchestra.run.smithi040.stderr:Generating a dashboard self-signed certificate... 2023-12-08T22:45:02.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:01 smithi040 bash[24841]: audit 2023-12-08T22:45:00.883611+0000 mgr.smithi040.evuiyl (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-12-08T22:45:02.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:01 smithi040 bash[24841]: audit 2023-12-08T22:45:00.900200+0000 mgr.smithi040.evuiyl (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-12-08T22:45:03.040 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: Self-signed certificate created 2023-12-08T22:45:03.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:02 smithi040 bash[24841]: cluster 2023-12-08T22:45:01.933349+0000 mon.smithi040 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi040.evuiyl(active, since 2s) 2023-12-08T22:45:03.733 INFO:teuthology.orchestra.run.smithi040.stderr:Creating initial admin user... 2023-12-08T22:45:04.456 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:04 smithi040 bash[24841]: audit 2023-12-08T22:45:02.921835+0000 mgr.smithi040.evuiyl (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:45:04.456 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:04 smithi040 bash[24841]: audit 2023-12-08T22:45:03.032014+0000 mon.smithi040 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:04.456 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:04 smithi040 bash[24841]: audit 2023-12-08T22:45:03.035818+0000 mon.smithi040 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:05.324 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$HxUl2FUCWKG0.ZzCpFU4N.vu31nS9dUIrw0greLNmUgguTzupSgai", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1702075505, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2023-12-08T22:45:05.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:05 smithi040 bash[24841]: audit 2023-12-08T22:45:05.066364+0000 mgr.smithi040.evuiyl (mgr.14156) 4 : audit [DBG] 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 2023-12-08T22:45:06.058 INFO:teuthology.orchestra.run.smithi040.stderr:Fetching dashboard port number... 2023-12-08T22:45:06.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:06 smithi040 bash[24841]: audit 2023-12-08T22:45:05.319873+0000 mon.smithi040 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:07.386 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: 8443 2023-12-08T22:45:07.605 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:07 smithi040 bash[24841]: cluster 2023-12-08T22:45:06.322983+0000 mon.smithi040 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi040.evuiyl(active, since 6s) 2023-12-08T22:45:07.605 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:07 smithi040 bash[24841]: audit 2023-12-08T22:45:06.864332+0000 mon.smithi040 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:08.124 INFO:teuthology.orchestra.run.smithi040.stderr:firewalld does not appear to be present 2023-12-08T22:45:08.124 INFO:teuthology.orchestra.run.smithi040.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr:Ceph Dashboard is now available at: 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr: URL: https://smithi040.front.sepia.ceph.com:8443/ 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr: User: admin 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr: Password: bcakhyo60z 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:08.127 INFO:teuthology.orchestra.run.smithi040.stderr:Enabling autotune for osd_memory_target 2023-12-08T22:45:08.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:08 smithi040 bash[24841]: audit 2023-12-08T22:45:07.381353+0000 mon.smithi040 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.40:0/3660170338' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2023-12-08T22:45:11.579 INFO:teuthology.orchestra.run.smithi040.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2023-12-08T22:45:12.300 INFO:teuthology.orchestra.run.smithi040.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr:Or, if you are only running a single cluster on this host: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr:Please consider enabling telemetry to help improve Ceph: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: ceph telemetry on 2023-12-08T22:45:12.301 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.302 INFO:teuthology.orchestra.run.smithi040.stderr:For more information see: 2023-12-08T22:45:12.302 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.302 INFO:teuthology.orchestra.run.smithi040.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2023-12-08T22:45:12.302 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T22:45:12.302 INFO:teuthology.orchestra.run.smithi040.stderr:Bootstrap complete. 2023-12-08T22:45:12.335 INFO:tasks.cephadm:Fetching config... 2023-12-08T22:45:12.336 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:45:12.336 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2023-12-08T22:45:12.343 INFO:tasks.cephadm:Fetching client.admin keyring... 2023-12-08T22:45:12.343 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:45:12.343 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2023-12-08T22:45:12.390 INFO:tasks.cephadm:Fetching mon keyring... 2023-12-08T22:45:12.390 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:45:12.390 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/keyring of=/dev/stdout 2023-12-08T22:45:12.443 INFO:tasks.cephadm:Fetching pub ssh key... 2023-12-08T22:45:12.443 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:45:12.443 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2023-12-08T22:45:12.493 INFO:tasks.cephadm:Installing pub ssh key for root users... 2023-12-08T22:45:12.494 DEBUG:teuthology.orchestra.run.smithi040:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDcf0unA1hIAxX+aJSo65Xk6H/eLpeyesU814jS222b9JfL2KrpteSVsfNGoVfwldZ7vIp0e5PuHD5Cu6fcfLJajwQcZKwVFZOnt36yMweuZuiqaqUjXV8rrt8jG1iaESsqQ99IqoGM1lEhpJf9pn1mgrwwtbP8LB8T9/A6Zyf0nI2McyqP1CwAZ0015J98b0vV+ri1+LQ6a3/3TdTexAaTScVk6H4TNVpPQsYQceiRco5/tkUkzTKpLc1cxHJa2e85TTTrcBZLtqUbKsblAxKlx33RKVtiNx12gUiFpGr25NgjZHz6Gg+YQnUlHqamrFEQRNNLYOM0TSmEuoOB4IkXm1wBX+JrYa2Ty33bcneBv3zyowNEEoFv3CaCYlkoUwXYATF5oJ8x+m5nv/NIQdzXpeSoX7vZXPhNvu6A54dgbV8385xosHwRcTK49n+QvDoLxaYnMceScCEaz4FfTkxg1ph5iJlFKARYIktnr3EeDJSXw8mZ4NxiG9FXmImoBRs= ceph-20a983fc-961b-11ee-95a3-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-12-08T22:45:12.563 INFO:teuthology.orchestra.run.smithi040.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDcf0unA1hIAxX+aJSo65Xk6H/eLpeyesU814jS222b9JfL2KrpteSVsfNGoVfwldZ7vIp0e5PuHD5Cu6fcfLJajwQcZKwVFZOnt36yMweuZuiqaqUjXV8rrt8jG1iaESsqQ99IqoGM1lEhpJf9pn1mgrwwtbP8LB8T9/A6Zyf0nI2McyqP1CwAZ0015J98b0vV+ri1+LQ6a3/3TdTexAaTScVk6H4TNVpPQsYQceiRco5/tkUkzTKpLc1cxHJa2e85TTTrcBZLtqUbKsblAxKlx33RKVtiNx12gUiFpGr25NgjZHz6Gg+YQnUlHqamrFEQRNNLYOM0TSmEuoOB4IkXm1wBX+JrYa2Ty33bcneBv3zyowNEEoFv3CaCYlkoUwXYATF5oJ8x+m5nv/NIQdzXpeSoX7vZXPhNvu6A54dgbV8385xosHwRcTK49n+QvDoLxaYnMceScCEaz4FfTkxg1ph5iJlFKARYIktnr3EeDJSXw8mZ4NxiG9FXmImoBRs= ceph-20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:45:12.570 DEBUG:teuthology.orchestra.run.smithi149:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDcf0unA1hIAxX+aJSo65Xk6H/eLpeyesU814jS222b9JfL2KrpteSVsfNGoVfwldZ7vIp0e5PuHD5Cu6fcfLJajwQcZKwVFZOnt36yMweuZuiqaqUjXV8rrt8jG1iaESsqQ99IqoGM1lEhpJf9pn1mgrwwtbP8LB8T9/A6Zyf0nI2McyqP1CwAZ0015J98b0vV+ri1+LQ6a3/3TdTexAaTScVk6H4TNVpPQsYQceiRco5/tkUkzTKpLc1cxHJa2e85TTTrcBZLtqUbKsblAxKlx33RKVtiNx12gUiFpGr25NgjZHz6Gg+YQnUlHqamrFEQRNNLYOM0TSmEuoOB4IkXm1wBX+JrYa2Ty33bcneBv3zyowNEEoFv3CaCYlkoUwXYATF5oJ8x+m5nv/NIQdzXpeSoX7vZXPhNvu6A54dgbV8385xosHwRcTK49n+QvDoLxaYnMceScCEaz4FfTkxg1ph5iJlFKARYIktnr3EeDJSXw8mZ4NxiG9FXmImoBRs= ceph-20a983fc-961b-11ee-95a3-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-12-08T22:45:12.596 INFO:teuthology.orchestra.run.smithi149.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDcf0unA1hIAxX+aJSo65Xk6H/eLpeyesU814jS222b9JfL2KrpteSVsfNGoVfwldZ7vIp0e5PuHD5Cu6fcfLJajwQcZKwVFZOnt36yMweuZuiqaqUjXV8rrt8jG1iaESsqQ99IqoGM1lEhpJf9pn1mgrwwtbP8LB8T9/A6Zyf0nI2McyqP1CwAZ0015J98b0vV+ri1+LQ6a3/3TdTexAaTScVk6H4TNVpPQsYQceiRco5/tkUkzTKpLc1cxHJa2e85TTTrcBZLtqUbKsblAxKlx33RKVtiNx12gUiFpGr25NgjZHz6Gg+YQnUlHqamrFEQRNNLYOM0TSmEuoOB4IkXm1wBX+JrYa2Ty33bcneBv3zyowNEEoFv3CaCYlkoUwXYATF5oJ8x+m5nv/NIQdzXpeSoX7vZXPhNvu6A54dgbV8385xosHwRcTK49n+QvDoLxaYnMceScCEaz4FfTkxg1ph5iJlFKARYIktnr3EeDJSXw8mZ4NxiG9FXmImoBRs= ceph-20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:45:12.608 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2023-12-08T22:45:12.630 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:12 smithi040 bash[24841]: audit 2023-12-08T22:45:11.570325+0000 mon.smithi040 (mon.0) 93 : audit [INF] from='client.? 172.21.15.40:0/481456416' entity='client.admin' 2023-12-08T22:45:18.650 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2023-12-08T22:45:18.650 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2023-12-08T22:45:18.894 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:18 smithi040 bash[24841]: audit 2023-12-08T22:45:17.726402+0000 mon.smithi040 (mon.0) 94 : audit [INF] from='client.? 172.21.15.40:0/663213879' entity='client.admin' 2023-12-08T22:45:21.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:20 smithi040 bash[24841]: cluster 2023-12-08T22:45:19.887832+0000 mgr.smithi040.evuiyl (mgr.14156) 5 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: audit 2023-12-08T22:45:21.282229+0000 mon.smithi040 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: audit 2023-12-08T22:45:21.617041+0000 mon.smithi040 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi040", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: audit 2023-12-08T22:45:21.624042+0000 mon.smithi040 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: cephadm 2023-12-08T22:45:21.640424+0000 mgr.smithi040.evuiyl (mgr.14156) 6 : cephadm [INF] Deploying daemon alertmanager.smithi040 on smithi040 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: cluster 2023-12-08T22:45:21.888128+0000 mgr.smithi040.evuiyl (mgr.14156) 7 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:22.544 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:22 smithi040 bash[24841]: audit 2023-12-08T22:45:22.270762+0000 mon.smithi040 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:23.267 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi149 2023-12-08T22:45:23.268 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:45:23.268 DEBUG:teuthology.orchestra.run.smithi149:> dd of=/etc/ceph/ceph.conf 2023-12-08T22:45:23.275 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:45:23.275 DEBUG:teuthology.orchestra.run.smithi149:> dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-08T22:45:23.322 INFO:tasks.cephadm:Adding host smithi149 to orchestrator... 2023-12-08T22:45:23.323 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch host add smithi149 2023-12-08T22:45:24.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:23 smithi040 bash[24841]: audit 2023-12-08T22:45:22.266356+0000 mgr.smithi040.evuiyl (mgr.14156) 8 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:45:25.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:24 smithi040 bash[24841]: cluster 2023-12-08T22:45:23.888522+0000 mgr.smithi040.evuiyl (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:27.242 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:26 smithi040 bash[24841]: cluster 2023-12-08T22:45:25.888952+0000 mgr.smithi040.evuiyl (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:29.476 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:29 smithi040 bash[24841]: cluster 2023-12-08T22:45:27.889437+0000 mgr.smithi040.evuiyl (mgr.14156) 11 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: audit 2023-12-08T22:45:29.745890+0000 mon.smithi040 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: audit 2023-12-08T22:45:29.748370+0000 mon.smithi040 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi040", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: audit 2023-12-08T22:45:29.751003+0000 mon.smithi040 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi040", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: audit 2023-12-08T22:45:29.752365+0000 mon.smithi040 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: cephadm 2023-12-08T22:45:29.753388+0000 mgr.smithi040.evuiyl (mgr.14156) 12 : cephadm [INF] Deploying daemon crash.smithi040 on smithi040 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: cluster 2023-12-08T22:45:29.889819+0000 mgr.smithi040.evuiyl (mgr.14156) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:30 smithi040 bash[24841]: audit 2023-12-08T22:45:30.073102+0000 mon.smithi040 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: cluster 2023-12-08T22:45:31.890297+0000 mgr.smithi040.evuiyl (mgr.14156) 14 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: audit 2023-12-08T22:45:32.495899+0000 mon.smithi040 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: audit 2023-12-08T22:45:32.640360+0000 mon.smithi040 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: audit 2023-12-08T22:45:32.645214+0000 mon.smithi040 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: audit 2023-12-08T22:45:32.647714+0000 mon.smithi040 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-12-08T22:45:33.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:33 smithi040 bash[24841]: audit 2023-12-08T22:45:32.654100+0000 mon.smithi040 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:34 smithi040 bash[24841]: audit 2023-12-08T22:45:32.648368+0000 mgr.smithi040.evuiyl (mgr.14156) 15 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-12-08T22:45:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:34 smithi040 bash[24841]: cephadm 2023-12-08T22:45:32.658788+0000 mgr.smithi040.evuiyl (mgr.14156) 16 : cephadm [INF] Deploying daemon grafana.smithi040 on smithi040 2023-12-08T22:45:35.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:35 smithi040 bash[24841]: cluster 2023-12-08T22:45:33.890802+0000 mgr.smithi040.evuiyl (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:35.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:35 smithi040 bash[24841]: audit 2023-12-08T22:45:35.079539+0000 mon.smithi040 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:37.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:37 smithi040 bash[24841]: cluster 2023-12-08T22:45:35.891176+0000 mgr.smithi040.evuiyl (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:39.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:39 smithi040 bash[24841]: cluster 2023-12-08T22:45:37.891530+0000 mgr.smithi040.evuiyl (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:41 smithi040 bash[24841]: cluster 2023-12-08T22:45:39.891925+0000 mgr.smithi040.evuiyl (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:43.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:43 smithi040 bash[24841]: cluster 2023-12-08T22:45:41.892491+0000 mgr.smithi040.evuiyl (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:45.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:45 smithi040 bash[24841]: cluster 2023-12-08T22:45:43.892903+0000 mgr.smithi040.evuiyl (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:47.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:47 smithi040 bash[24841]: cluster 2023-12-08T22:45:45.893432+0000 mgr.smithi040.evuiyl (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:49 smithi040 bash[24841]: cluster 2023-12-08T22:45:47.893915+0000 mgr.smithi040.evuiyl (mgr.14156) 24 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:51 smithi040 bash[24841]: cluster 2023-12-08T22:45:49.894274+0000 mgr.smithi040.evuiyl (mgr.14156) 25 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:53.282 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:53 smithi040 bash[24841]: cluster 2023-12-08T22:45:51.894755+0000 mgr.smithi040.evuiyl (mgr.14156) 26 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:54.572 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:54 smithi040 bash[24841]: audit 2023-12-08T22:45:53.533351+0000 mon.smithi040 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:54.572 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:54 smithi040 bash[24841]: cephadm 2023-12-08T22:45:53.536591+0000 mgr.smithi040.evuiyl (mgr.14156) 27 : cephadm [INF] Deploying daemon node-exporter.smithi040 on smithi040 2023-12-08T22:45:54.572 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:54 smithi040 bash[24841]: cluster 2023-12-08T22:45:53.895122+0000 mgr.smithi040.evuiyl (mgr.14156) 28 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:45:54.572 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:54 smithi040 bash[24841]: audit 2023-12-08T22:45:54.286134+0000 mon.smithi040 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:54.572 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:54 smithi040 bash[24841]: audit 2023-12-08T22:45:54.290659+0000 mon.smithi040 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2023-12-08T22:45:56.203 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:56 smithi040 bash[24841]: audit 2023-12-08T22:45:55.088542+0000 mon.smithi040 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' 2023-12-08T22:45:56.203 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:56 smithi040 bash[24841]: audit 2023-12-08T22:45:55.291921+0000 mon.smithi040 (mon.0) 114 : audit [INF] from='mgr.14156 172.21.15.40:0/3851915774' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2023-12-08T22:45:56.203 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:45:56 smithi040 bash[24841]: cluster 2023-12-08T22:45:55.292116+0000 mon.smithi040 (mon.0) 115 : cluster [DBG] mgrmap e14: smithi040.evuiyl(active, since 55s) 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: cluster 2023-12-08T22:46:02.176150+0000 mon.smithi040 (mon.0) 116 : cluster [INF] Active manager daemon smithi040.evuiyl restarted 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: cluster 2023-12-08T22:46:02.176919+0000 mon.smithi040 (mon.0) 117 : cluster [INF] Activating manager daemon smithi040.evuiyl 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: cluster 2023-12-08T22:46:02.183457+0000 mon.smithi040 (mon.0) 118 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: cluster 2023-12-08T22:46:02.183645+0000 mon.smithi040 (mon.0) 119 : cluster [DBG] mgrmap e15: smithi040.evuiyl(active, starting, since 0.00704487s) 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.185250+0000 mon.smithi040 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.186529+0000 mon.smithi040 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi040.evuiyl", "id": "smithi040.evuiyl"}]: dispatch 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.187227+0000 mon.smithi040 (mon.0) 122 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.187420+0000 mon.smithi040 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-12-08T22:46:03.341 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.187582+0000 mon.smithi040 (mon.0) 124 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: cluster 2023-12-08T22:46:02.209400+0000 mon.smithi040 (mon.0) 125 : cluster [INF] Manager daemon smithi040.evuiyl is now available 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.358782+0000 mon.smithi040 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.361311+0000 mon.smithi040 (mon.0) 127 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.387186+0000 mon.smithi040 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.411741+0000 mon.smithi040 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/mirror_snapshot_schedule"}]: dispatch 2023-12-08T22:46:03.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:03 smithi040 bash[24841]: audit 2023-12-08T22:46:02.420084+0000 mon.smithi040 (mon.0) 130 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi040.evuiyl/trash_purge_schedule"}]: dispatch 2023-12-08T22:46:04.376 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:04 smithi040 bash[24841]: cluster 2023-12-08T22:46:03.185865+0000 mon.smithi040 (mon.0) 131 : cluster [DBG] mgrmap e16: smithi040.evuiyl(active, since 1.00926s) 2023-12-08T22:46:06.433 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:06 smithi040 bash[24841]: cluster 2023-12-08T22:46:05.188547+0000 mon.smithi040 (mon.0) 132 : cluster [DBG] mgrmap e17: smithi040.evuiyl(active, since 3s) 2023-12-08T22:46:09.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.226701+0000 mon.smithi040 (mon.0) 133 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:09.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.541614+0000 mon.smithi040 (mon.0) 134 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi040", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:46:09.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.543110+0000 mon.smithi040 (mon.0) 135 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:09.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.544254+0000 mon.smithi040 (mon.0) 136 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:46:09.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.597832+0000 mon.smithi040 (mon.0) 137 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:09.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:09 smithi040 bash[24841]: audit 2023-12-08T22:46:08.603312+0000 mon.smithi040 (mon.0) 138 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:10.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:10 smithi040 bash[24841]: cephadm 2023-12-08T22:46:08.546323+0000 mgr.smithi040.evuiyl (mgr.14180) 1 : cephadm [INF] Updating smithi040:/etc/ceph/ceph.conf 2023-12-08T22:46:10.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:10 smithi040 bash[24841]: cephadm 2023-12-08T22:46:08.566917+0000 mgr.smithi040.evuiyl (mgr.14180) 2 : cephadm [INF] Updating smithi040:/etc/ceph/ceph.client.admin.keyring 2023-12-08T22:46:10.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:10 smithi040 bash[24841]: cephadm 2023-12-08T22:46:08.622016+0000 mgr.smithi040.evuiyl (mgr.14180) 3 : cephadm [INF] Deploying daemon prometheus.smithi040 on smithi040 2023-12-08T22:46:13.138 INFO:teuthology.orchestra.run.smithi149.stdout:Added host 'smithi149' with addr '172.21.15.149' 2023-12-08T22:46:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:13 smithi040 bash[24841]: audit 2023-12-08T22:46:12.290269+0000 mgr.smithi040.evuiyl (mgr.14180) 4 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi149", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:46:13.913 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch host ls --format=json 2023-12-08T22:46:14.420 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:14 smithi040 bash[24841]: audit 2023-12-08T22:46:13.132913+0000 mon.smithi040 (mon.0) 139 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:14.420 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:14 smithi040 bash[24841]: cephadm 2023-12-08T22:46:13.133657+0000 mgr.smithi040.evuiyl (mgr.14180) 5 : cephadm [INF] Added host smithi149 2023-12-08T22:46:16.639 INFO:teuthology.orchestra.run.smithi149.stdout: 2023-12-08T22:46:16.639 INFO:teuthology.orchestra.run.smithi149.stdout:[{"addr": "172.21.15.40", "hostname": "smithi040", "labels": [], "status": ""}, {"addr": "172.21.15.149", "hostname": "smithi149", "labels": [], "status": ""}] 2023-12-08T22:46:17.253 INFO:tasks.cephadm:Setting crush tunables to default 2023-12-08T22:46:17.253 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd crush tunables default 2023-12-08T22:46:18.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:18 smithi040 bash[24841]: audit 2023-12-08T22:46:16.633495+0000 mgr.smithi040.evuiyl (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:46:22.253 INFO:teuthology.orchestra.run.smithi040.stderr:adjusted tunables profile to default 2023-12-08T22:46:22.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:22 smithi040 bash[24841]: audit 2023-12-08T22:46:21.237094+0000 mon.smithi040 (mon.0) 140 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:22.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:22 smithi040 bash[24841]: audit 2023-12-08T22:46:21.238909+0000 mon.smithi040 (mon.0) 141 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:46:22.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:22 smithi040 bash[24841]: audit 2023-12-08T22:46:21.432632+0000 mon.smithi040 (mon.0) 142 : audit [INF] from='client.? 172.21.15.40:0/2784056145' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2023-12-08T22:46:22.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:22 smithi040 bash[24841]: audit 2023-12-08T22:46:21.796149+0000 mon.smithi040 (mon.0) 143 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:23.013 INFO:tasks.cephadm:Adding mon.smithi040 on smithi040 2023-12-08T22:46:23.013 INFO:tasks.cephadm:Adding mon.smithi149 on smithi149 2023-12-08T22:46:23.013 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch apply mon '2;smithi040:172.21.15.40=smithi040;smithi149:172.21.15.149=smithi149' 2023-12-08T22:46:23.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:23 smithi040 bash[24841]: cluster 2023-12-08T22:46:22.189148+0000 mgr.smithi040.evuiyl (mgr.14180) 7 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:23.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:23 smithi040 bash[24841]: audit 2023-12-08T22:46:22.243670+0000 mon.smithi040 (mon.0) 144 : audit [INF] from='client.? 172.21.15.40:0/2784056145' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2023-12-08T22:46:23.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:23 smithi040 bash[24841]: cluster 2023-12-08T22:46:22.243757+0000 mon.smithi040 (mon.0) 145 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-12-08T22:46:23.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:23 smithi040 bash[24841]: audit 2023-12-08T22:46:22.402701+0000 mon.smithi040 (mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:23.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:23 smithi040 bash[24841]: audit 2023-12-08T22:46:23.054293+0000 mon.smithi040 (mon.0) 147 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:25.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:25 smithi040 bash[24841]: cluster 2023-12-08T22:46:24.189627+0000 mgr.smithi040.evuiyl (mgr.14180) 8 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:26.343 INFO:teuthology.orchestra.run.smithi149.stdout:Scheduled mon update... 2023-12-08T22:46:27.235 DEBUG:teuthology.orchestra.run.smithi149:mon.smithi149> sudo journalctl -f -n 0 -u ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi149.service 2023-12-08T22:46:27.237 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-08T22:46:27.238 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph mon dump -f json 2023-12-08T22:46:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:27 smithi040 bash[24841]: cluster 2023-12-08T22:46:26.190097+0000 mgr.smithi040.evuiyl (mgr.14180) 9 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:27 smithi040 bash[24841]: audit 2023-12-08T22:46:26.329526+0000 mgr.smithi040.evuiyl (mgr.14180) 10 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi040:172.21.15.40=smithi040;smithi149:172.21.15.149=smithi149", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:46:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:27 smithi040 bash[24841]: cephadm 2023-12-08T22:46:26.334552+0000 mgr.smithi040.evuiyl (mgr.14180) 11 : cephadm [INF] Saving service mon spec with placement smithi040:172.21.15.40=smithi040;smithi149:172.21.15.149=smithi149;count:2 2023-12-08T22:46:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:27 smithi040 bash[24841]: audit 2023-12-08T22:46:26.338783+0000 mon.smithi040 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:28.215 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2023-12-08T22:46:29.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:28 smithi040 bash[24841]: audit 2023-12-08T22:46:27.556919+0000 mon.smithi040 (mon.0) 149 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:29.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:28 smithi040 bash[24841]: cluster 2023-12-08T22:46:28.190540+0000 mgr.smithi040.evuiyl (mgr.14180) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:30.772 INFO:teuthology.orchestra.run.smithi149.stdout: 2023-12-08T22:46:30.772 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":1,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","modified":"2023-12-08T22:43:45.791982Z","created":"2023-12-08T22:43:45.791982Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi040","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:3300","nonce":0},{"type":"v1","addr":"172.21.15.40:6789","nonce":0}]},"addr":"172.21.15.40:6789/0","public_addr":"172.21.15.40:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-08T22:46:30.774 INFO:teuthology.orchestra.run.smithi149.stderr:dumped monmap epoch 1 2023-12-08T22:46:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: cluster 2023-12-08T22:46:30.190987+0000 mgr.smithi040.evuiyl (mgr.14180) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.251518+0000 mon.smithi040 (mon.0) 150 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.557939+0000 mon.smithi040 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.559538+0000 mon.smithi040 (mon.0) 152 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.561146+0000 mon.smithi040 (mon.0) 153 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.562485+0000 mon.smithi040 (mon.0) 154 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.617707+0000 mon.smithi040 (mon.0) 155 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.624586+0000 mon.smithi040 (mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.627936+0000 mon.smithi040 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.633036+0000 mon.smithi040 (mon.0) 158 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.634458+0000 mon.smithi040 (mon.0) 159 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:31 smithi040 bash[24841]: audit 2023-12-08T22:46:30.767447+0000 mon.smithi040 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.149:0/708298284' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-08T22:46:32.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:32 smithi040 bash[24841]: cephadm 2023-12-08T22:46:30.564793+0000 mgr.smithi040.evuiyl (mgr.14180) 14 : cephadm [INF] Updating smithi149:/etc/ceph/ceph.conf 2023-12-08T22:46:32.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:32 smithi040 bash[24841]: cephadm 2023-12-08T22:46:30.582076+0000 mgr.smithi040.evuiyl (mgr.14180) 15 : cephadm [INF] Updating smithi149:/etc/ceph/ceph.client.admin.keyring 2023-12-08T22:46:32.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:32 smithi040 bash[24841]: cephadm 2023-12-08T22:46:30.635573+0000 mgr.smithi040.evuiyl (mgr.14180) 16 : cephadm [INF] Deploying daemon crash.smithi149 on smithi149 2023-12-08T22:46:32.687 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-08T22:46:32.687 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph mon dump -f json 2023-12-08T22:46:33.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:33 smithi040 bash[24841]: cluster 2023-12-08T22:46:32.191449+0000 mgr.smithi040.evuiyl (mgr.14180) 17 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: audit 2023-12-08T22:46:33.723648+0000 mon.smithi040 (mon.0) 161 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: audit 2023-12-08T22:46:33.728376+0000 mon.smithi040 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.uzeacz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-08T22:46:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: audit 2023-12-08T22:46:33.731217+0000 mon.smithi040 (mon.0) 163 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.uzeacz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2023-12-08T22:46:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: audit 2023-12-08T22:46:33.732552+0000 mon.smithi040 (mon.0) 164 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-08T22:46:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: audit 2023-12-08T22:46:33.734196+0000 mon.smithi040 (mon.0) 165 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:35.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: cephadm 2023-12-08T22:46:33.735528+0000 mgr.smithi040.evuiyl (mgr.14180) 18 : cephadm [INF] Deploying daemon mgr.smithi149.uzeacz on smithi149 2023-12-08T22:46:35.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:34 smithi040 bash[24841]: cluster 2023-12-08T22:46:34.191914+0000 mgr.smithi040.evuiyl (mgr.14180) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:37.126 INFO:teuthology.orchestra.run.smithi149.stdout: 2023-12-08T22:46:37.126 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":1,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","modified":"2023-12-08T22:43:45.791982Z","created":"2023-12-08T22:43:45.791982Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi040","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:3300","nonce":0},{"type":"v1","addr":"172.21.15.40:6789","nonce":0}]},"addr":"172.21.15.40:6789/0","public_addr":"172.21.15.40:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-08T22:46:37.128 INFO:teuthology.orchestra.run.smithi149.stderr:dumped monmap epoch 1 2023-12-08T22:46:37.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:37 smithi040 bash[24841]: cluster 2023-12-08T22:46:36.192357+0000 mgr.smithi040.evuiyl (mgr.14180) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:37.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:37 smithi040 bash[24841]: audit 2023-12-08T22:46:37.121566+0000 mon.smithi040 (mon.0) 166 : audit [DBG] from='client.? 172.21.15.149:0/390597786' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-08T22:46:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:38 smithi040 bash[24841]: audit 2023-12-08T22:46:37.312261+0000 mon.smithi040 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:38 smithi040 bash[24841]: audit 2023-12-08T22:46:37.316236+0000 mon.smithi040 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-08T22:46:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:38 smithi040 bash[24841]: audit 2023-12-08T22:46:37.317768+0000 mon.smithi040 (mon.0) 169 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:38 smithi040 bash[24841]: cephadm 2023-12-08T22:46:37.318983+0000 mgr.smithi040.evuiyl (mgr.14180) 21 : cephadm [INF] Deploying daemon mon.smithi149 on smithi149 2023-12-08T22:46:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:38 smithi040 bash[24841]: audit 2023-12-08T22:46:37.416318+0000 mon.smithi040 (mon.0) 170 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:39.094 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-08T22:46:39.094 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph mon dump -f json 2023-12-08T22:46:39.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:39 smithi040 bash[24841]: cluster 2023-12-08T22:46:38.192773+0000 mgr.smithi040.evuiyl (mgr.14180) 22 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:41.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:41 smithi040 bash[24841]: cluster 2023-12-08T22:46:40.193229+0000 mgr.smithi040.evuiyl (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:42.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:42 smithi149 systemd[1]: Started Ceph mon.smithi149 for 20a983fc-961b-11ee-95a3-87774f69a715. 2023-12-08T22:46:43.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:43 smithi040 bash[24841]: cluster 2023-12-08T22:46:42.193684+0000 mgr.smithi040.evuiyl (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:43.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:43 smithi040 bash[24841]: audit 2023-12-08T22:46:42.530815+0000 mon.smithi040 (mon.0) 171 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:44.093 INFO:teuthology.orchestra.run.smithi149.stdout: 2023-12-08T22:46:44.093 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":1,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","modified":"2023-12-08T22:43:45.791982Z","created":"2023-12-08T22:43:45.791982Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi040","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:3300","nonce":0},{"type":"v1","addr":"172.21.15.40:6789","nonce":0}]},"addr":"172.21.15.40:6789/0","public_addr":"172.21.15.40:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-12-08T22:46:44.096 INFO:teuthology.orchestra.run.smithi149.stderr:dumped monmap epoch 1 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.085+0000 7f701934b880 0 set uid:gid to 167:167 (ceph:ceph) 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.085+0000 7f701934b880 0 ceph version 16.2.14-365-g451ceae1 (451ceae11b5d4caee05e94372fe658621eefc0b1) pacific (stable), process ceph-mon, pid 7 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.085+0000 7f701934b880 0 pidfile_write: ignore empty --pid-file 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 0 load: jerasure load: lrc load: isa 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: RocksDB version: 6.8.1 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-12-08T22:46:44.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Compile date Dec 7 2023 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: DB SUMMARY 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: CURRENT file: CURRENT 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: IDENTITY file: IDENTITY 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi149/store.db dir, Total Num: 0, files: 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi149/store.db: 000003.log size: 511 ; 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.error_if_exists: 0 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.create_if_missing: 0 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.paranoid_checks: 1 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.env: 0x55dc62dc2080 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.fs: Posix File System 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.info_log: 0x55dc63970520 2023-12-08T22:46:44.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_file_opening_threads: 16 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.statistics: (nil) 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.use_fsync: 0 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_log_file_size: 0 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.keep_log_file_num: 1000 2023-12-08T22:46:44.316 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.recycle_log_file_num: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.allow_fallocate: 1 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.allow_mmap_reads: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.allow_mmap_writes: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.use_direct_reads: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.create_missing_column_families: 0 2023-12-08T22:46:44.317 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.db_log_dir: 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi149/store.db 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_subcompactions: 1 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_background_flushes: -1 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.advise_random_on_open: 1 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.db_write_buffer_size: 0 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.write_buffer_manager: 0x55dc645be480 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-12-08T22:46:44.318 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.rate_limiter: (nil) 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.wal_recovery_mode: 2 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.enable_thread_tracking: 0 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.enable_pipelined_write: 0 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.unordered_write: 0 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.row_cache: None 2023-12-08T22:46:44.319 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.wal_filter: None 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.allow_ingest_behind: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.preserve_deletes: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.two_write_queues: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.manual_wal_flush: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.atomic_flush: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.log_readahead_size: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_background_jobs: 2 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_background_compactions: -1 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-12-08T22:46:44.320 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_total_wal_size: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.max_open_files: -1 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.bytes_per_sync: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Options.compaction_readahead_size: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Compression algorithms supported: 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-12-08T22:46:44.321 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kZSTD supported: 0 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kXpressCompression supported: 0 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kLZ4HCCompression supported: 1 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kLZ4Compression supported: 1 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kBZip2Compression supported: 0 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kZlibCompression supported: 1 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: kSnappyCompression supported: 1 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.089+0000 7f701934b880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi149/store.db/MANIFEST-000001 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-12-08T22:46:44.322 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.merge_operator: 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_filter: None 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_filter_factory: None 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55dc63913d28) 2023-12-08T22:46:44.325 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: cache_index_and_filter_blocks: 1 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: cache_index_and_filter_blocks_with_high_priority: 0 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: pin_l0_filter_and_index_blocks_in_cache: 0 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: pin_top_level_index_and_filter: 1 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: index_type: 0 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: data_block_index_type: 0 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: index_shortening: 1 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: data_block_hash_table_util_ratio: 0.750000 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: hash_index_allow_collision: 1 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: checksum: 1 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: no_block_cache: 0 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_cache: 0x55dc6394af10 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_cache_name: BinnedLRUCache 2023-12-08T22:46:44.326 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_cache_options: 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: capacity : 536870912 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: num_shard_bits : 4 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: strict_capacity_limit : 0 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: high_pri_pool_ratio: 0.000 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_cache_compressed: (nil) 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: persistent_cache: (nil) 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_size: 4096 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_size_deviation: 10 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_restart_interval: 16 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: index_block_restart_interval: 1 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: metadata_block_size: 4096 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: partition_filters: 0 2023-12-08T22:46:44.327 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: use_delta_encoding: 1 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: filter_policy: rocksdb.BuiltinBloomFilter 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: whole_key_filtering: 1 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: verify_compression: 0 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: read_amp_bytes_per_bit: 0 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: format_version: 2 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: enable_index_compression: 1 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: block_align: 0 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.write_buffer_size: 33554432 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_write_buffer_number: 2 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression: NoCompression 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression: Disabled 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.prefix_extractor: nullptr 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-12-08T22:46:44.328 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.num_levels: 7 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.level: 32767 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.strategy: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-12-08T22:46:44.329 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compression_opts.enabled: false 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.target_file_size_base: 67108864 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-12-08T22:46:44.330 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.arena_block_size: 4194304 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.disable_auto_compactions: 0 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-12-08T22:46:44.331 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.table_properties_collectors: 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.inplace_update_support: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.bloom_locality: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.max_successive_merges: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.paranoid_file_checks: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.force_consistency_checks: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.report_bg_io_stats: 0 2023-12-08T22:46:44.332 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.ttl: 2592000 2023-12-08T22:46:44.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-12-08T22:46:44.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi149/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2023-12-08T22:46:44.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-12-08T22:46:44.333 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075604096177, "job": 1, "event": "recovery_started", "log_files": [3]} 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075604096826, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 4, "file_size": 1437, "table_properties": {"data_size": 523, "index_size": 40, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1702075604, "oldest_key_time": 3, "file_creation_time": 0}} 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1702075604097257, "job": 1, "event": "recovery_finished"} 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 4 rocksdb: DB pointer 0x55dc63a13800 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 0 mon.smithi149 does not exist in monmap, will attempt to join an existing cluster 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 0 using public_addr v2:172.21.15.149:0/0 -> [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f701934b880 0 starting mon.smithi149 rank -1 at public addrs [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] at bind addrs [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi149 fsid 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f7000151700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.093+0000 7f7000151700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** DB Stats ** 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-12-08T22:46:44.334 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** Compaction Stats [default] ** 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** Compaction Stats [default] ** 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:46:44.335 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Cumulative compaction: 0.00 GB write, 0.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Interval compaction: 0.00 GB write, 0.39 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** Compaction Stats [default] ** 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** Compaction Stats [default] ** 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.336 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4 0.00 0.00 1 0.001 0 0 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Uptime(secs): 0.0 total, 0.0 interval 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Flush(GB): cumulative 0.000, interval 0.000 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(GB): cumulative 0.000, interval 0.000 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(Total Files): cumulative 0, interval 0 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(L0 Files): cumulative 0, interval 0 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: AddFile(Keys): cumulative 0, interval 0 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Cumulative compaction: 0.00 GB write, 0.38 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: ** File Read Latency Histogram By Level [default] ** 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.097+0000 7f701934b880 1 mon.smithi149@-1(???) e0 preinit fsid 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).mds e1 new map 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).mds e1 print_map 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: e1 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: enable_multiple, ever_enabled_multiple: 1,1 2023-12-08T22:46:44.337 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 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} 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: legacy client fscid: -1 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: No filesystems configured 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.137+0000 7f7002956700 0 mon.smithi149@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-12-08T22:46:44.338 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: cluster 2023-12-08T22:46:42.193684+0000 mgr.smithi040.evuiyl (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:44.339 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: audit 2023-12-08T22:46:42.530815+0000 mon.smithi040 (mon.0) 171 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:44.339 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:44 smithi149 bash[28710]: debug 2023-12-08T22:46:44.141+0000 7f7002956700 1 mon.smithi149@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2023-12-08T22:46:46.042 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-12-08T22:46:46.042 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph mon dump -f json 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:44.154013+0000 mon.smithi040 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:44.154423+0000 mon.smithi040 (mon.0) 177 : cluster [INF] mon.smithi040 calling monitor election 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:44.157030+0000 mon.smithi040 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:44.194105+0000 mgr.smithi040.evuiyl (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:45.148631+0000 mon.smithi040 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:45.440114+0000 mon.smithi040 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi149.uzeacz/crt"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:46.148672+0000 mon.smithi040 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:46.151812+0000 mon.smithi149 (mon.1) 1 : cluster [INF] mon.smithi149 calling monitor election 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:46.194494+0000 mgr.smithi040.evuiyl (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:47.148861+0000 mon.smithi040 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:48.149000+0000 mon.smithi040 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:48.194879+0000 mgr.smithi040.evuiyl (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.149287+0000 mon.smithi040 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.176091+0000 mon.smithi040 (mon.0) 185 : cluster [INF] mon.smithi040 is new leader, mons smithi040,smithi149 in quorum (ranks 0,1) 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.181459+0000 mon.smithi040 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi040=[v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0],smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0]} removed_ranks: {} 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.199399+0000 mon.smithi040 (mon.0) 187 : cluster [DBG] fsmap 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.199459+0000 mon.smithi040 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.199832+0000 mon.smithi040 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi040.evuiyl(active, since 47s) 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.201399+0000 mon.smithi040 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi149.uzeacz started 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.204801+0000 mon.smithi040 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.207753+0000 mon.smithi040 (mon.0) 192 : cluster [INF] overall HEALTH_OK 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.208515+0000 mon.smithi040 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi149.uzeacz/key"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.209259+0000 mon.smithi040 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.212048+0000 mon.smithi040 (mon.0) 195 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.215338+0000 mon.smithi040 (mon.0) 196 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.216647+0000 mon.smithi040 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.218033+0000 mon.smithi040 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:46:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:49 smithi040 bash[24841]: audit 2023-12-08T22:46:49.246065+0000 mon.smithi040 (mon.0) 199 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:44.154013+0000 mon.smithi040 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi040"}]: dispatch 2023-12-08T22:46:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:44.154423+0000 mon.smithi040 (mon.0) 177 : cluster [INF] mon.smithi040 calling monitor election 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:44.157030+0000 mon.smithi040 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:44.194105+0000 mgr.smithi040.evuiyl (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:45.148631+0000 mon.smithi040 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:45.440114+0000 mon.smithi040 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi149.uzeacz/crt"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:46.148672+0000 mon.smithi040 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:46.151812+0000 mon.smithi149 (mon.1) 1 : cluster [INF] mon.smithi149 calling monitor election 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:46.194494+0000 mgr.smithi040.evuiyl (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:47.148861+0000 mon.smithi040 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:48.149000+0000 mon.smithi040 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:48.194879+0000 mgr.smithi040.evuiyl (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.149287+0000 mon.smithi040 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.176091+0000 mon.smithi040 (mon.0) 185 : cluster [INF] mon.smithi040 is new leader, mons smithi040,smithi149 in quorum (ranks 0,1) 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.181459+0000 mon.smithi040 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi040=[v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0],smithi149=[v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0]} removed_ranks: {} 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.199399+0000 mon.smithi040 (mon.0) 187 : cluster [DBG] fsmap 2023-12-08T22:46:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.199459+0000 mon.smithi040 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.199832+0000 mon.smithi040 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi040.evuiyl(active, since 47s) 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.201399+0000 mon.smithi040 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi149.uzeacz started 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.204801+0000 mon.smithi040 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.207753+0000 mon.smithi040 (mon.0) 192 : cluster [INF] overall HEALTH_OK 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.208515+0000 mon.smithi040 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi149.uzeacz/key"}]: dispatch 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.209259+0000 mon.smithi040 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.149:0/478101338' entity='mgr.smithi149.uzeacz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.212048+0000 mon.smithi040 (mon.0) 195 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.215338+0000 mon.smithi040 (mon.0) 196 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.216647+0000 mon.smithi040 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.218033+0000 mon.smithi040 (mon.0) 198 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:46:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:49 smithi149 bash[28710]: audit 2023-12-08T22:46:49.246065+0000 mon.smithi040 (mon.0) 199 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:50.333 INFO:teuthology.orchestra.run.smithi149.stdout: 2023-12-08T22:46:50.333 INFO:teuthology.orchestra.run.smithi149.stdout:{"epoch":2,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","modified":"2023-12-08T22:46:44.149159Z","created":"2023-12-08T22:43:45.791982Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi040","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:3300","nonce":0},{"type":"v1","addr":"172.21.15.40:6789","nonce":0}]},"addr":"172.21.15.40:6789/0","public_addr":"172.21.15.40:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi149","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:3300","nonce":0},{"type":"v1","addr":"172.21.15.149:6789","nonce":0}]},"addr":"172.21.15.149:6789/0","public_addr":"172.21.15.149:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2023-12-08T22:46:50.336 INFO:teuthology.orchestra.run.smithi149.stderr:dumped monmap epoch 2 2023-12-08T22:46:50.552 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: cephadm 2023-12-08T22:46:49.220041+0000 mgr.smithi040.evuiyl (mgr.14180) 29 : cephadm [INF] Updating smithi040:/etc/ceph/ceph.conf 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: cephadm 2023-12-08T22:46:49.220744+0000 mgr.smithi040.evuiyl (mgr.14180) 30 : cephadm [INF] Updating smithi149:/etc/ceph/ceph.conf 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: cluster 2023-12-08T22:46:49.265467+0000 mon.smithi040 (mon.0) 200 : cluster [DBG] mgrmap e18: smithi040.evuiyl(active, since 47s), standbys: smithi149.uzeacz 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.265807+0000 mon.smithi040 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi149.uzeacz", "id": "smithi149.uzeacz"}]: dispatch 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.439669+0000 mon.smithi040 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.445192+0000 mon.smithi040 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.450374+0000 mon.smithi040 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.451780+0000 mon.smithi040 (mon.0) 205 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:49.453032+0000 mon.smithi040 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:50.553 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:50 smithi040 bash[24841]: audit 2023-12-08T22:46:50.149316+0000 mon.smithi040 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: cephadm 2023-12-08T22:46:49.220041+0000 mgr.smithi040.evuiyl (mgr.14180) 29 : cephadm [INF] Updating smithi040:/etc/ceph/ceph.conf 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: cephadm 2023-12-08T22:46:49.220744+0000 mgr.smithi040.evuiyl (mgr.14180) 30 : cephadm [INF] Updating smithi149:/etc/ceph/ceph.conf 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: cluster 2023-12-08T22:46:49.265467+0000 mon.smithi040 (mon.0) 200 : cluster [DBG] mgrmap e18: smithi040.evuiyl(active, since 47s), standbys: smithi149.uzeacz 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.265807+0000 mon.smithi040 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr metadata", "who": "smithi149.uzeacz", "id": "smithi149.uzeacz"}]: dispatch 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.439669+0000 mon.smithi040 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.445192+0000 mon.smithi040 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.450374+0000 mon.smithi040 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.451780+0000 mon.smithi040 (mon.0) 205 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:49.453032+0000 mon.smithi040 (mon.0) 206 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:50 smithi149 bash[28710]: audit 2023-12-08T22:46:50.149316+0000 mon.smithi040 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mon metadata", "id": "smithi149"}]: dispatch 2023-12-08T22:46:51.132 INFO:tasks.cephadm:Generating final ceph.conf file... 2023-12-08T22:46:51.133 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph config generate-minimal-conf 2023-12-08T22:46:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:51 smithi040 bash[24841]: cephadm 2023-12-08T22:46:49.449883+0000 mgr.smithi040.evuiyl (mgr.14180) 31 : cephadm [INF] Reconfiguring mon.smithi040 (unknown last config time)... 2023-12-08T22:46:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:51 smithi040 bash[24841]: cephadm 2023-12-08T22:46:49.454038+0000 mgr.smithi040.evuiyl (mgr.14180) 32 : cephadm [INF] Reconfiguring daemon mon.smithi040 on smithi040 2023-12-08T22:46:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:51 smithi040 bash[24841]: cluster 2023-12-08T22:46:50.195270+0000 mgr.smithi040.evuiyl (mgr.14180) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:51 smithi040 bash[24841]: audit 2023-12-08T22:46:50.328896+0000 mon.smithi040 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.149:0/2714829453' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-08T22:46:51.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:51 smithi149 bash[28710]: cephadm 2023-12-08T22:46:49.449883+0000 mgr.smithi040.evuiyl (mgr.14180) 31 : cephadm [INF] Reconfiguring mon.smithi040 (unknown last config time)... 2023-12-08T22:46:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:51 smithi149 bash[28710]: cephadm 2023-12-08T22:46:49.454038+0000 mgr.smithi040.evuiyl (mgr.14180) 32 : cephadm [INF] Reconfiguring daemon mon.smithi040 on smithi040 2023-12-08T22:46:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:51 smithi149 bash[28710]: cluster 2023-12-08T22:46:50.195270+0000 mgr.smithi040.evuiyl (mgr.14180) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:51 smithi149 bash[28710]: audit 2023-12-08T22:46:50.328896+0000 mon.smithi040 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.149:0/2714829453' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-12-08T22:46:52.965 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: audit 2023-12-08T22:46:51.648026+0000 mon.smithi040 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:52.965 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: cephadm 2023-12-08T22:46:51.649378+0000 mgr.smithi040.evuiyl (mgr.14180) 34 : cephadm [INF] Reconfiguring mgr.smithi040.evuiyl (unknown last config time)... 2023-12-08T22:46:52.966 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: audit 2023-12-08T22:46:51.649931+0000 mon.smithi040 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi040.evuiyl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-08T22:46:52.966 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: audit 2023-12-08T22:46:51.651214+0000 mon.smithi040 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-08T22:46:52.966 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: audit 2023-12-08T22:46:51.652301+0000 mon.smithi040 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:52.966 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: cephadm 2023-12-08T22:46:51.653353+0000 mgr.smithi040.evuiyl (mgr.14180) 35 : cephadm [INF] Reconfiguring daemon mgr.smithi040.evuiyl on smithi040 2023-12-08T22:46:52.966 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:52 smithi040 bash[24841]: cluster 2023-12-08T22:46:52.195707+0000 mgr.smithi040.evuiyl (mgr.14180) 36 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: audit 2023-12-08T22:46:51.648026+0000 mon.smithi040 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: cephadm 2023-12-08T22:46:51.649378+0000 mgr.smithi040.evuiyl (mgr.14180) 34 : cephadm [INF] Reconfiguring mgr.smithi040.evuiyl (unknown last config time)... 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: audit 2023-12-08T22:46:51.649931+0000 mon.smithi040 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi040.evuiyl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: audit 2023-12-08T22:46:51.651214+0000 mon.smithi040 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: audit 2023-12-08T22:46:51.652301+0000 mon.smithi040 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: cephadm 2023-12-08T22:46:51.653353+0000 mgr.smithi040.evuiyl (mgr.14180) 35 : cephadm [INF] Reconfiguring daemon mgr.smithi040.evuiyl on smithi040 2023-12-08T22:46:53.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:52 smithi149 bash[28710]: cluster 2023-12-08T22:46:52.195707+0000 mgr.smithi040.evuiyl (mgr.14180) 36 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:55.434 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:55 smithi040 bash[24841]: audit 2023-12-08T22:46:54.135584+0000 mon.smithi040 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:55.434 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:55 smithi040 bash[24841]: cephadm 2023-12-08T22:46:54.136587+0000 mgr.smithi040.evuiyl (mgr.14180) 37 : cephadm [INF] Reconfiguring alertmanager.smithi040 (dependencies changed)... 2023-12-08T22:46:55.434 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:55 smithi040 bash[24841]: cephadm 2023-12-08T22:46:54.147152+0000 mgr.smithi040.evuiyl (mgr.14180) 38 : cephadm [INF] Reconfiguring daemon alertmanager.smithi040 on smithi040 2023-12-08T22:46:55.434 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:55 smithi040 bash[24841]: cluster 2023-12-08T22:46:54.196135+0000 mgr.smithi040.evuiyl (mgr.14180) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:55 smithi149 bash[28710]: audit 2023-12-08T22:46:54.135584+0000 mon.smithi040 (mon.0) 213 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:46:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:55 smithi149 bash[28710]: cephadm 2023-12-08T22:46:54.136587+0000 mgr.smithi040.evuiyl (mgr.14180) 37 : cephadm [INF] Reconfiguring alertmanager.smithi040 (dependencies changed)... 2023-12-08T22:46:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:55 smithi149 bash[28710]: cephadm 2023-12-08T22:46:54.147152+0000 mgr.smithi040.evuiyl (mgr.14180) 38 : cephadm [INF] Reconfiguring daemon alertmanager.smithi040 on smithi040 2023-12-08T22:46:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:55 smithi149 bash[28710]: cluster 2023-12-08T22:46:54.196135+0000 mgr.smithi040.evuiyl (mgr.14180) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:55.832 INFO:teuthology.orchestra.run.smithi040.stdout:# minimal ceph.conf for 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:46:55.832 INFO:teuthology.orchestra.run.smithi040.stdout:[global] 2023-12-08T22:46:55.832 INFO:teuthology.orchestra.run.smithi040.stdout: fsid = 20a983fc-961b-11ee-95a3-87774f69a715 2023-12-08T22:46:55.832 INFO:teuthology.orchestra.run.smithi040.stdout: mon_host = [v2:172.21.15.40:3300/0,v1:172.21.15.40:6789/0] [v2:172.21.15.149:3300/0,v1:172.21.15.149:6789/0] 2023-12-08T22:46:56.489 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:56 smithi040 bash[24841]: audit 2023-12-08T22:46:55.828026+0000 mon.smithi040 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.40:0/442576231' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:56.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:56 smithi149 bash[28710]: audit 2023-12-08T22:46:55.828026+0000 mon.smithi040 (mon.0) 214 : audit [DBG] from='client.? 172.21.15.40:0/442576231' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:46:57.114 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2023-12-08T22:46:57.114 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:46:57.114 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/ceph/ceph.conf 2023-12-08T22:46:57.214 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:46:57.215 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-08T22:46:57.225 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:46:57.225 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.conf 2023-12-08T22:46:57.242 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:46:57.242 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-12-08T22:46:57.301 INFO:tasks.cephadm:Deploying OSDs... 2023-12-08T22:46:57.301 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:46:57.301 DEBUG:teuthology.orchestra.run.smithi040:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:46:57.308 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-08T22:46:57.308 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/nvme1n1 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/nvme1n1 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 526 Links: 1 Device type: 103,2 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:45:19.395277643 +0000 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:45:19.271280503 +0000 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:45:19.271280503 +0000 2023-12-08T22:46:57.357 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:46:57.357 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-12-08T22:46:57.410 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:57 smithi040 bash[24841]: cluster 2023-12-08T22:46:56.196534+0000 mgr.smithi040.evuiyl (mgr.14180) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:57.412 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:46:57.412 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:46:57.412 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000317587 s, 1.6 MB/s 2023-12-08T22:46:57.413 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-12-08T22:46:57.466 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/nvme2n1 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/nvme2n1 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 534 Links: 1 Device type: 103,4 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:45:19.415277181 +0000 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:45:19.271280503 +0000 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:45:19.271280503 +0000 2023-12-08T22:46:57.517 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:46:57.518 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-12-08T22:46:57.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:57 smithi149 bash[28710]: cluster 2023-12-08T22:46:56.196534+0000 mgr.smithi040.evuiyl (mgr.14180) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:57.572 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:46:57.572 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:46:57.573 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000415933 s, 1.2 MB/s 2023-12-08T22:46:57.573 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-12-08T22:46:57.627 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/nvme3n1 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/nvme3n1 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 542 Links: 1 Device type: 103,6 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:45:19.439276628 +0000 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:45:19.275280410 +0000 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:45:19.275280410 +0000 2023-12-08T22:46:57.676 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:46:57.677 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-12-08T22:46:57.728 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:46:57.728 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:46:57.729 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000374547 s, 1.4 MB/s 2023-12-08T22:46:57.730 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-12-08T22:46:57.787 DEBUG:teuthology.orchestra.run.smithi040:> stat /dev/nvme4n1 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout: File: /dev/nvme4n1 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout:Device: 5h/5d Inode: 550 Links: 1 Device type: 103,8 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout:Access: 2023-12-08 22:45:19.459276167 +0000 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout:Modify: 2023-12-08 22:45:19.275280410 +0000 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout:Change: 2023-12-08 22:45:19.275280410 +0000 2023-12-08T22:46:57.836 INFO:teuthology.orchestra.run.smithi040.stdout: Birth: - 2023-12-08T22:46:57.837 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-12-08T22:46:57.892 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records in 2023-12-08T22:46:57.892 INFO:teuthology.orchestra.run.smithi040.stderr:1+0 records out 2023-12-08T22:46:57.892 INFO:teuthology.orchestra.run.smithi040.stderr:512 bytes copied, 0.000320777 s, 1.6 MB/s 2023-12-08T22:46:57.893 DEBUG:teuthology.orchestra.run.smithi040:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-12-08T22:46:57.942 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:46:57.942 DEBUG:teuthology.orchestra.run.smithi149:> dd if=/scratch_devs of=/dev/stdout 2023-12-08T22:46:57.949 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-12-08T22:46:57.950 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme1n1 2023-12-08T22:46:58.000 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme1n1 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 522 Links: 1 Device type: 103,2 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:46:28.313941163 +0000 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:46:28.189947495 +0000 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:46:28.189947495 +0000 2023-12-08T22:46:58.001 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:46:58.001 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-12-08T22:46:58.056 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:46:58.056 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:46:58.057 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000469228 s, 1.1 MB/s 2023-12-08T22:46:58.058 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-12-08T22:46:58.110 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme2n1 2023-12-08T22:46:58.162 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme2n1 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 530 Links: 1 Device type: 103,4 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:46:28.329940347 +0000 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:46:28.193947290 +0000 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:46:28.193947290 +0000 2023-12-08T22:46:58.188 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:46:58.189 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-12-08T22:46:58.220 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:46:58.220 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:46:58.220 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.00043667 s, 1.2 MB/s 2023-12-08T22:46:58.221 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-12-08T22:46:58.274 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme3n1 2023-12-08T22:46:58.324 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme3n1 2023-12-08T22:46:58.324 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:58.324 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 538 Links: 1 Device type: 103,6 2023-12-08T22:46:58.325 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:58.325 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:46:28.349939326 +0000 2023-12-08T22:46:58.325 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:46:28.197947085 +0000 2023-12-08T22:46:58.325 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:46:28.197947085 +0000 2023-12-08T22:46:58.325 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:46:58.325 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-12-08T22:46:58.380 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:46:58.380 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:46:58.381 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000474978 s, 1.1 MB/s 2023-12-08T22:46:58.382 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-12-08T22:46:58.438 DEBUG:teuthology.orchestra.run.smithi149:> stat /dev/nvme4n1 2023-12-08T22:46:58.489 INFO:teuthology.orchestra.run.smithi149.stdout: File: /dev/nvme4n1 2023-12-08T22:46:58.489 INFO:teuthology.orchestra.run.smithi149.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-12-08T22:46:58.489 INFO:teuthology.orchestra.run.smithi149.stdout:Device: 5h/5d Inode: 546 Links: 1 Device type: 103,8 2023-12-08T22:46:58.490 INFO:teuthology.orchestra.run.smithi149.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-12-08T22:46:58.490 INFO:teuthology.orchestra.run.smithi149.stdout:Access: 2023-12-08 22:46:28.365938510 +0000 2023-12-08T22:46:58.490 INFO:teuthology.orchestra.run.smithi149.stdout:Modify: 2023-12-08 22:46:28.197947085 +0000 2023-12-08T22:46:58.490 INFO:teuthology.orchestra.run.smithi149.stdout:Change: 2023-12-08 22:46:28.197947085 +0000 2023-12-08T22:46:58.490 INFO:teuthology.orchestra.run.smithi149.stdout: Birth: - 2023-12-08T22:46:58.490 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-12-08T22:46:58.548 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records in 2023-12-08T22:46:58.548 INFO:teuthology.orchestra.run.smithi149.stderr:1+0 records out 2023-12-08T22:46:58.548 INFO:teuthology.orchestra.run.smithi149.stderr:512 bytes copied, 0.000475674 s, 1.1 MB/s 2023-12-08T22:46:58.549 DEBUG:teuthology.orchestra.run.smithi149:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-12-08T22:46:58.603 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch apply osd --all-available-devices 2023-12-08T22:46:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:46:59 smithi040 bash[24841]: cluster 2023-12-08T22:46:58.196972+0000 mgr.smithi040.evuiyl (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:46:59.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:46:59 smithi149 bash[28710]: cluster 2023-12-08T22:46:58.196972+0000 mgr.smithi040.evuiyl (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:00.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: audit 2023-12-08T22:46:59.479671+0000 mon.smithi040 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:00.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: cephadm 2023-12-08T22:46:59.480440+0000 mgr.smithi040.evuiyl (mgr.14180) 42 : cephadm [INF] Reconfiguring crash.smithi040 (monmap changed)... 2023-12-08T22:47:00.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: audit 2023-12-08T22:46:59.480861+0000 mon.smithi040 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi040", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:47:00.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: audit 2023-12-08T22:46:59.482193+0000 mon.smithi040 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:00.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: cephadm 2023-12-08T22:46:59.483157+0000 mgr.smithi040.evuiyl (mgr.14180) 43 : cephadm [INF] Reconfiguring daemon crash.smithi040 on smithi040 2023-12-08T22:47:00.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:00 smithi040 bash[24841]: cluster 2023-12-08T22:47:00.197418+0000 mgr.smithi040.evuiyl (mgr.14180) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: audit 2023-12-08T22:46:59.479671+0000 mon.smithi040 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: cephadm 2023-12-08T22:46:59.480440+0000 mgr.smithi040.evuiyl (mgr.14180) 42 : cephadm [INF] Reconfiguring crash.smithi040 (monmap changed)... 2023-12-08T22:47:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: audit 2023-12-08T22:46:59.480861+0000 mon.smithi040 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi040", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:47:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: audit 2023-12-08T22:46:59.482193+0000 mon.smithi040 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: cephadm 2023-12-08T22:46:59.483157+0000 mgr.smithi040.evuiyl (mgr.14180) 43 : cephadm [INF] Reconfiguring daemon crash.smithi040 on smithi040 2023-12-08T22:47:00.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:00 smithi149 bash[28710]: cluster 2023-12-08T22:47:00.197418+0000 mgr.smithi040.evuiyl (mgr.14180) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:01.746 INFO:teuthology.orchestra.run.smithi149.stdout:Scheduled osd.all-available-devices update... 2023-12-08T22:47:02.446 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2023-12-08T22:47:02.446 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:02.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: audit 2023-12-08T22:47:01.601627+0000 mon.smithi040 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:02.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cephadm 2023-12-08T22:47:01.603029+0000 mgr.smithi040.evuiyl (mgr.14180) 45 : cephadm [INF] Reconfiguring grafana.smithi040 (dependencies changed)... 2023-12-08T22:47:02.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cephadm 2023-12-08T22:47:01.647057+0000 mgr.smithi040.evuiyl (mgr.14180) 46 : cephadm [INF] Reconfiguring daemon grafana.smithi040 on smithi040 2023-12-08T22:47:02.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: audit 2023-12-08T22:47:01.730141+0000 mgr.smithi040.evuiyl (mgr.14180) 47 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:47:02.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cephadm 2023-12-08T22:47:01.734536+0000 mgr.smithi040.evuiyl (mgr.14180) 48 : cephadm [INF] Marking host: smithi040 for OSDSpec preview refresh. 2023-12-08T22:47:02.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cephadm 2023-12-08T22:47:01.734666+0000 mgr.smithi040.evuiyl (mgr.14180) 49 : cephadm [INF] Marking host: smithi149 for OSDSpec preview refresh. 2023-12-08T22:47:02.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cephadm 2023-12-08T22:47:01.735138+0000 mgr.smithi040.evuiyl (mgr.14180) 50 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-12-08T22:47:02.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: audit 2023-12-08T22:47:01.740938+0000 mon.smithi040 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:02.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:02 smithi040 bash[24841]: cluster 2023-12-08T22:47:02.197870+0000 mgr.smithi040.evuiyl (mgr.14180) 51 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: audit 2023-12-08T22:47:01.601627+0000 mon.smithi040 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cephadm 2023-12-08T22:47:01.603029+0000 mgr.smithi040.evuiyl (mgr.14180) 45 : cephadm [INF] Reconfiguring grafana.smithi040 (dependencies changed)... 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cephadm 2023-12-08T22:47:01.647057+0000 mgr.smithi040.evuiyl (mgr.14180) 46 : cephadm [INF] Reconfiguring daemon grafana.smithi040 on smithi040 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: audit 2023-12-08T22:47:01.730141+0000 mgr.smithi040.evuiyl (mgr.14180) 47 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cephadm 2023-12-08T22:47:01.734536+0000 mgr.smithi040.evuiyl (mgr.14180) 48 : cephadm [INF] Marking host: smithi040 for OSDSpec preview refresh. 2023-12-08T22:47:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cephadm 2023-12-08T22:47:01.734666+0000 mgr.smithi040.evuiyl (mgr.14180) 49 : cephadm [INF] Marking host: smithi149 for OSDSpec preview refresh. 2023-12-08T22:47:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cephadm 2023-12-08T22:47:01.735138+0000 mgr.smithi040.evuiyl (mgr.14180) 50 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-12-08T22:47:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: audit 2023-12-08T22:47:01.740938+0000 mon.smithi040 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:02 smithi149 bash[28710]: cluster 2023-12-08T22:47:02.197870+0000 mgr.smithi040.evuiyl (mgr.14180) 51 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:05.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:05 smithi040 bash[24841]: cluster 2023-12-08T22:47:04.198331+0000 mgr.smithi040.evuiyl (mgr.14180) 52 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:05.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:05 smithi149 bash[28710]: cluster 2023-12-08T22:47:04.198331+0000 mgr.smithi040.evuiyl (mgr.14180) 52 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:06.963 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:07.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:07 smithi040 bash[24841]: cluster 2023-12-08T22:47:06.198686+0000 mgr.smithi040.evuiyl (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:07.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:07 smithi040 bash[24841]: audit 2023-12-08T22:47:06.959068+0000 mon.smithi040 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.40:0/3593017533' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:07 smithi149 bash[28710]: cluster 2023-12-08T22:47:06.198686+0000 mgr.smithi040.evuiyl (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:07 smithi149 bash[28710]: audit 2023-12-08T22:47:06.959068+0000 mon.smithi040 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.40:0/3593017533' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:08.408 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:09.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:08 smithi040 bash[24841]: audit 2023-12-08T22:47:07.574696+0000 mon.smithi040 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:09.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:08 smithi040 bash[24841]: cephadm 2023-12-08T22:47:07.575805+0000 mgr.smithi040.evuiyl (mgr.14180) 54 : cephadm [INF] Reconfiguring prometheus.smithi040 (dependencies changed)... 2023-12-08T22:47:09.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:08 smithi040 bash[24841]: cephadm 2023-12-08T22:47:07.581134+0000 mgr.smithi040.evuiyl (mgr.14180) 55 : cephadm [INF] Reconfiguring daemon prometheus.smithi040 on smithi040 2023-12-08T22:47:09.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:08 smithi040 bash[24841]: cluster 2023-12-08T22:47:08.198974+0000 mgr.smithi040.evuiyl (mgr.14180) 56 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:09.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:08 smithi149 bash[28710]: audit 2023-12-08T22:47:07.574696+0000 mon.smithi040 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:09.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:08 smithi149 bash[28710]: cephadm 2023-12-08T22:47:07.575805+0000 mgr.smithi040.evuiyl (mgr.14180) 54 : cephadm [INF] Reconfiguring prometheus.smithi040 (dependencies changed)... 2023-12-08T22:47:09.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:08 smithi149 bash[28710]: cephadm 2023-12-08T22:47:07.581134+0000 mgr.smithi040.evuiyl (mgr.14180) 55 : cephadm [INF] Reconfiguring daemon prometheus.smithi040 on smithi040 2023-12-08T22:47:09.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:08 smithi149 bash[28710]: cluster 2023-12-08T22:47:08.198974+0000 mgr.smithi040.evuiyl (mgr.14180) 56 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:09.410 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:11.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:11 smithi040 bash[24841]: cluster 2023-12-08T22:47:10.199397+0000 mgr.smithi040.evuiyl (mgr.14180) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:11.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:11 smithi149 bash[28710]: cluster 2023-12-08T22:47:10.199397+0000 mgr.smithi040.evuiyl (mgr.14180) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:13 smithi040 bash[24841]: cluster 2023-12-08T22:47:12.199829+0000 mgr.smithi040.evuiyl (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:13.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:13 smithi149 bash[28710]: cluster 2023-12-08T22:47:12.199829+0000 mgr.smithi040.evuiyl (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:14.202 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:14.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:14 smithi040 bash[24841]: audit 2023-12-08T22:47:14.198134+0000 mon.smithi040 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.40:0/1698360391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:14.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:14 smithi149 bash[28710]: audit 2023-12-08T22:47:14.198134+0000 mon.smithi040 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.40:0/1698360391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:15 smithi149 bash[28710]: cluster 2023-12-08T22:47:14.200224+0000 mgr.smithi040.evuiyl (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:15 smithi149 bash[28710]: audit 2023-12-08T22:47:14.863692+0000 mon.smithi040 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:15 smithi149 bash[28710]: audit 2023-12-08T22:47:14.865041+0000 mon.smithi040 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:47:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:15 smithi149 bash[28710]: audit 2023-12-08T22:47:14.866090+0000 mon.smithi040 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:15.571 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:15 smithi040 bash[24841]: cluster 2023-12-08T22:47:14.200224+0000 mgr.smithi040.evuiyl (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:15.571 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:15 smithi040 bash[24841]: audit 2023-12-08T22:47:14.863692+0000 mon.smithi040 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:15.571 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:15 smithi040 bash[24841]: audit 2023-12-08T22:47:14.865041+0000 mon.smithi040 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi149", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-12-08T22:47:15.571 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:15 smithi040 bash[24841]: audit 2023-12-08T22:47:14.866090+0000 mon.smithi040 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:15.572 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:16 smithi040 bash[24841]: cephadm 2023-12-08T22:47:14.864597+0000 mgr.smithi040.evuiyl (mgr.14180) 60 : cephadm [INF] Reconfiguring crash.smithi149 (monmap changed)... 2023-12-08T22:47:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:16 smithi040 bash[24841]: cephadm 2023-12-08T22:47:14.866947+0000 mgr.smithi040.evuiyl (mgr.14180) 61 : cephadm [INF] Reconfiguring daemon crash.smithi149 on smithi149 2023-12-08T22:47:16.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:16 smithi149 bash[28710]: cephadm 2023-12-08T22:47:14.864597+0000 mgr.smithi040.evuiyl (mgr.14180) 60 : cephadm [INF] Reconfiguring crash.smithi149 (monmap changed)... 2023-12-08T22:47:16.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:16 smithi149 bash[28710]: cephadm 2023-12-08T22:47:14.866947+0000 mgr.smithi040.evuiyl (mgr.14180) 61 : cephadm [INF] Reconfiguring daemon crash.smithi149 on smithi149 2023-12-08T22:47:16.573 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:17 smithi149 bash[28710]: cluster 2023-12-08T22:47:16.200555+0000 mgr.smithi040.evuiyl (mgr.14180) 62 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:17 smithi149 bash[28710]: audit 2023-12-08T22:47:16.770494+0000 mon.smithi040 (mon.0) 226 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:17 smithi149 bash[28710]: audit 2023-12-08T22:47:16.772208+0000 mon.smithi040 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.uzeacz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-08T22:47:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:17 smithi149 bash[28710]: audit 2023-12-08T22:47:16.773828+0000 mon.smithi040 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-08T22:47:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:17 smithi149 bash[28710]: audit 2023-12-08T22:47:16.774954+0000 mon.smithi040 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:17.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:17 smithi040 bash[24841]: cluster 2023-12-08T22:47:16.200555+0000 mgr.smithi040.evuiyl (mgr.14180) 62 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:17.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:17 smithi040 bash[24841]: audit 2023-12-08T22:47:16.770494+0000 mon.smithi040 (mon.0) 226 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:17.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:17 smithi040 bash[24841]: audit 2023-12-08T22:47:16.772208+0000 mon.smithi040 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi149.uzeacz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-12-08T22:47:17.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:17 smithi040 bash[24841]: audit 2023-12-08T22:47:16.773828+0000 mon.smithi040 (mon.0) 228 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mgr services"}]: dispatch 2023-12-08T22:47:17.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:17 smithi040 bash[24841]: audit 2023-12-08T22:47:16.774954+0000 mon.smithi040 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:18.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:18 smithi040 bash[24841]: cephadm 2023-12-08T22:47:16.771699+0000 mgr.smithi040.evuiyl (mgr.14180) 63 : cephadm [INF] Reconfiguring mgr.smithi149.uzeacz (monmap changed)... 2023-12-08T22:47:18.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:18 smithi040 bash[24841]: cephadm 2023-12-08T22:47:16.775993+0000 mgr.smithi040.evuiyl (mgr.14180) 64 : cephadm [INF] Reconfiguring daemon mgr.smithi149.uzeacz on smithi149 2023-12-08T22:47:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:18 smithi149 bash[28710]: cephadm 2023-12-08T22:47:16.771699+0000 mgr.smithi040.evuiyl (mgr.14180) 63 : cephadm [INF] Reconfiguring mgr.smithi149.uzeacz (monmap changed)... 2023-12-08T22:47:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:18 smithi149 bash[28710]: cephadm 2023-12-08T22:47:16.775993+0000 mgr.smithi040.evuiyl (mgr.14180) 64 : cephadm [INF] Reconfiguring daemon mgr.smithi149.uzeacz on smithi149 2023-12-08T22:47:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:19 smithi149 bash[28710]: cluster 2023-12-08T22:47:18.201012+0000 mgr.smithi040.evuiyl (mgr.14180) 65 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:19 smithi149 bash[28710]: audit 2023-12-08T22:47:18.451023+0000 mon.smithi040 (mon.0) 230 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:19 smithi149 bash[28710]: audit 2023-12-08T22:47:18.452335+0000 mon.smithi040 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-08T22:47:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:19 smithi149 bash[28710]: audit 2023-12-08T22:47:18.453565+0000 mon.smithi040 (mon.0) 232 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-08T22:47:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:19 smithi149 bash[28710]: audit 2023-12-08T22:47:18.454705+0000 mon.smithi040 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:19 smithi040 bash[24841]: cluster 2023-12-08T22:47:18.201012+0000 mgr.smithi040.evuiyl (mgr.14180) 65 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:19 smithi040 bash[24841]: audit 2023-12-08T22:47:18.451023+0000 mon.smithi040 (mon.0) 230 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:19 smithi040 bash[24841]: audit 2023-12-08T22:47:18.452335+0000 mon.smithi040 (mon.0) 231 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-12-08T22:47:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:19 smithi040 bash[24841]: audit 2023-12-08T22:47:18.453565+0000 mon.smithi040 (mon.0) 232 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-12-08T22:47:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:19 smithi040 bash[24841]: audit 2023-12-08T22:47:18.454705+0000 mon.smithi040 (mon.0) 233 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:19.846 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:20.362 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:20 smithi040 bash[24841]: cephadm 2023-12-08T22:47:18.451943+0000 mgr.smithi040.evuiyl (mgr.14180) 66 : cephadm [INF] Reconfiguring mon.smithi149 (monmap changed)... 2023-12-08T22:47:20.363 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:20 smithi040 bash[24841]: cephadm 2023-12-08T22:47:18.455790+0000 mgr.smithi040.evuiyl (mgr.14180) 67 : cephadm [INF] Reconfiguring daemon mon.smithi149 on smithi149 2023-12-08T22:47:20.363 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:20 smithi040 bash[24841]: audit 2023-12-08T22:47:19.843025+0000 mon.smithi149 (mon.1) 2 : audit [DBG] from='client.? 172.21.15.40:0/1904147570' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:20.555 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:20.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:20 smithi149 bash[28710]: cephadm 2023-12-08T22:47:18.451943+0000 mgr.smithi040.evuiyl (mgr.14180) 66 : cephadm [INF] Reconfiguring mon.smithi149 (monmap changed)... 2023-12-08T22:47:20.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:20 smithi149 bash[28710]: cephadm 2023-12-08T22:47:18.455790+0000 mgr.smithi040.evuiyl (mgr.14180) 67 : cephadm [INF] Reconfiguring daemon mon.smithi149 on smithi149 2023-12-08T22:47:20.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:20 smithi149 bash[28710]: audit 2023-12-08T22:47:19.843025+0000 mon.smithi149 (mon.1) 2 : audit [DBG] from='client.? 172.21.15.40:0/1904147570' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:21.556 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:21.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: cluster 2023-12-08T22:47:20.201468+0000 mgr.smithi040.evuiyl (mgr.14180) 68 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:21.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.324877+0000 mon.smithi040 (mon.0) 234 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.331195+0000 mon.smithi040 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.331880+0000 mgr.smithi040.evuiyl (mgr.14180) 69 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.333648+0000 mon.smithi040 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi040.front.sepia.ceph.com:9093"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.334236+0000 mgr.smithi040.evuiyl (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi040.front.sepia.ceph.com:9093"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.340099+0000 mon.smithi040 (mon.0) 237 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.351475+0000 mon.smithi040 (mon.0) 238 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.352320+0000 mgr.smithi040.evuiyl (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-08T22:47:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.361120+0000 mon.smithi040 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi040.front.sepia.ceph.com:3000"}]: dispatch 2023-12-08T22:47:21.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.367257+0000 mon.smithi040 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.377689+0000 mon.smithi040 (mon.0) 241 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-08T22:47:21.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.386047+0000 mon.smithi040 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi040.front.sepia.ceph.com:9095"}]: dispatch 2023-12-08T22:47:21.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.395219+0000 mon.smithi040 (mon.0) 243 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:21 smithi149 bash[28710]: audit 2023-12-08T22:47:20.401241+0000 mon.smithi040 (mon.0) 244 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: cluster 2023-12-08T22:47:20.201468+0000 mgr.smithi040.evuiyl (mgr.14180) 68 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.324877+0000 mon.smithi040 (mon.0) 234 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.331195+0000 mon.smithi040 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.331880+0000 mgr.smithi040.evuiyl (mgr.14180) 69 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.333648+0000 mon.smithi040 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi040.front.sepia.ceph.com:9093"}]: dispatch 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.334236+0000 mgr.smithi040.evuiyl (mgr.14180) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi040.front.sepia.ceph.com:9093"}]: dispatch 2023-12-08T22:47:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.340099+0000 mon.smithi040 (mon.0) 237 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.351475+0000 mon.smithi040 (mon.0) 238 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.352320+0000 mgr.smithi040.evuiyl (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.361120+0000 mon.smithi040 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi040.front.sepia.ceph.com:3000"}]: dispatch 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.367257+0000 mon.smithi040 (mon.0) 240 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.377689+0000 mon.smithi040 (mon.0) 241 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.386047+0000 mon.smithi040 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi040.front.sepia.ceph.com:9095"}]: dispatch 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.395219+0000 mon.smithi040 (mon.0) 243 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:21 smithi040 bash[24841]: audit 2023-12-08T22:47:20.401241+0000 mon.smithi040 (mon.0) 244 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:47:22.596 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:22 smithi040 bash[24841]: audit 2023-12-08T22:47:20.361696+0000 mgr.smithi040.evuiyl (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi040.front.sepia.ceph.com:3000"}]: dispatch 2023-12-08T22:47:22.596 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:22 smithi040 bash[24841]: audit 2023-12-08T22:47:20.378290+0000 mgr.smithi040.evuiyl (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-08T22:47:22.596 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:22 smithi040 bash[24841]: audit 2023-12-08T22:47:20.386531+0000 mgr.smithi040.evuiyl (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi040.front.sepia.ceph.com:9095"}]: dispatch 2023-12-08T22:47:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:22 smithi149 bash[28710]: audit 2023-12-08T22:47:20.361696+0000 mgr.smithi040.evuiyl (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi040.front.sepia.ceph.com:3000"}]: dispatch 2023-12-08T22:47:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:22 smithi149 bash[28710]: audit 2023-12-08T22:47:20.378290+0000 mgr.smithi040.evuiyl (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-12-08T22:47:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:22 smithi149 bash[28710]: audit 2023-12-08T22:47:20.386531+0000 mgr.smithi040.evuiyl (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi040.front.sepia.ceph.com:9095"}]: dispatch 2023-12-08T22:47:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:23 smithi040 bash[24841]: cluster 2023-12-08T22:47:22.201911+0000 mgr.smithi040.evuiyl (mgr.14180) 75 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:23.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:23 smithi149 bash[28710]: cluster 2023-12-08T22:47:22.201911+0000 mgr.smithi040.evuiyl (mgr.14180) 75 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:24.790 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:25.588 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:25 smithi040 bash[24841]: cluster 2023-12-08T22:47:24.202247+0000 mgr.smithi040.evuiyl (mgr.14180) 76 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:25 smithi040 bash[24841]: audit 2023-12-08T22:47:24.785653+0000 mon.smithi040 (mon.0) 245 : audit [DBG] from='client.? 172.21.15.40:0/309255479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:25 smithi149 bash[28710]: cluster 2023-12-08T22:47:24.202247+0000 mgr.smithi040.evuiyl (mgr.14180) 76 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:25 smithi149 bash[28710]: audit 2023-12-08T22:47:24.785653+0000 mon.smithi040 (mon.0) 245 : audit [DBG] from='client.? 172.21.15.40:0/309255479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:26.590 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:27.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:26 smithi040 bash[24841]: audit 2023-12-08T22:47:25.706885+0000 mon.smithi040 (mon.0) 246 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:27.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:26 smithi040 bash[24841]: audit 2023-12-08T22:47:25.716261+0000 mon.smithi040 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:27.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:26 smithi040 bash[24841]: cluster 2023-12-08T22:47:26.202671+0000 mgr.smithi040.evuiyl (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:26 smithi149 bash[28710]: audit 2023-12-08T22:47:25.706885+0000 mon.smithi040 (mon.0) 246 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:26 smithi149 bash[28710]: audit 2023-12-08T22:47:25.716261+0000 mon.smithi040 (mon.0) 247 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:26 smithi149 bash[28710]: cluster 2023-12-08T22:47:26.202671+0000 mgr.smithi040.evuiyl (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:26.956091+0000 mon.smithi040 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.259888+0000 mon.smithi040 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.261047+0000 mon.smithi040 (mon.0) 250 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.261984+0000 mon.smithi040 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.268997+0000 mon.smithi040 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.276616+0000 mon.smithi040 (mon.0) 253 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.282640+0000 mon.smithi040 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.283837+0000 mon.smithi040 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.284321+0000 mon.smithi040 (mon.0) 256 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:28.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:27 smithi040 bash[24841]: audit 2023-12-08T22:47:27.284830+0000 mon.smithi040 (mon.0) 257 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:26.956091+0000 mon.smithi040 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.259888+0000 mon.smithi040 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.261047+0000 mon.smithi040 (mon.0) 250 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.261984+0000 mon.smithi040 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.268997+0000 mon.smithi040 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:47:28.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.276616+0000 mon.smithi040 (mon.0) 253 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:47:28.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.282640+0000 mon.smithi040 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:47:28.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.283837+0000 mon.smithi040 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:47:28.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.284321+0000 mon.smithi040 (mon.0) 256 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:28.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:27 smithi149 bash[28710]: audit 2023-12-08T22:47:27.284830+0000 mon.smithi040 (mon.0) 257 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:47:29.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:28 smithi040 bash[24841]: cluster 2023-12-08T22:47:28.202982+0000 mgr.smithi040.evuiyl (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:29.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:28 smithi149 bash[28710]: cluster 2023-12-08T22:47:28.202982+0000 mgr.smithi040.evuiyl (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:29.684 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:30.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:29 smithi040 bash[24841]: audit 2023-12-08T22:47:29.679971+0000 mon.smithi040 (mon.0) 258 : audit [DBG] from='client.? 172.21.15.40:0/3335441015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:30.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:29 smithi149 bash[28710]: audit 2023-12-08T22:47:29.679971+0000 mon.smithi040 (mon.0) 258 : audit [DBG] from='client.? 172.21.15.40:0/3335441015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:30.407 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:31.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:30 smithi040 bash[24841]: cluster 2023-12-08T22:47:30.203408+0000 mgr.smithi040.evuiyl (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:31.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:30 smithi149 bash[28710]: cluster 2023-12-08T22:47:30.203408+0000 mgr.smithi040.evuiyl (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:31.409 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:33.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:33 smithi040 bash[24841]: cluster 2023-12-08T22:47:32.203902+0000 mgr.smithi040.evuiyl (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:33 smithi149 bash[28710]: cluster 2023-12-08T22:47:32.203902+0000 mgr.smithi040.evuiyl (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:34.853 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:35.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:35 smithi040 bash[24841]: cluster 2023-12-08T22:47:34.204410+0000 mgr.smithi040.evuiyl (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:35.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:35 smithi040 bash[24841]: audit 2023-12-08T22:47:34.849710+0000 mon.smithi040 (mon.0) 259 : audit [DBG] from='client.? 172.21.15.40:0/2325288379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:35 smithi149 bash[28710]: cluster 2023-12-08T22:47:34.204410+0000 mgr.smithi040.evuiyl (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:35 smithi149 bash[28710]: audit 2023-12-08T22:47:34.849710+0000 mon.smithi040 (mon.0) 259 : audit [DBG] from='client.? 172.21.15.40:0/2325288379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:35.922 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2023-12-08T22:47:36.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:36 smithi040 bash[24841]: audit 2023-12-08T22:47:36.021410+0000 mon.smithi149 (mon.1) 3 : audit [INF] from='client.? 172.21.15.149:0/3835750347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]: dispatch 2023-12-08T22:47:36.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:36 smithi040 bash[24841]: audit 2023-12-08T22:47:36.022702+0000 mon.smithi040 (mon.0) 260 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]: dispatch 2023-12-08T22:47:36.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:36 smithi040 bash[24841]: audit 2023-12-08T22:47:36.030221+0000 mon.smithi040 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]': finished 2023-12-08T22:47:36.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:36 smithi040 bash[24841]: cluster 2023-12-08T22:47:36.030343+0000 mon.smithi040 (mon.0) 262 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-12-08T22:47:36.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:36 smithi040 bash[24841]: audit 2023-12-08T22:47:36.030626+0000 mon.smithi040 (mon.0) 263 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:36 smithi149 bash[28710]: audit 2023-12-08T22:47:36.021410+0000 mon.smithi149 (mon.1) 3 : audit [INF] from='client.? 172.21.15.149:0/3835750347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]: dispatch 2023-12-08T22:47:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:36 smithi149 bash[28710]: audit 2023-12-08T22:47:36.022702+0000 mon.smithi040 (mon.0) 260 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]: dispatch 2023-12-08T22:47:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:36 smithi149 bash[28710]: audit 2023-12-08T22:47:36.030221+0000 mon.smithi040 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6966b8cb-4c9c-4485-a92f-38ca54e69b9c"}]': finished 2023-12-08T22:47:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:36 smithi149 bash[28710]: cluster 2023-12-08T22:47:36.030343+0000 mon.smithi040 (mon.0) 262 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-12-08T22:47:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:36 smithi149 bash[28710]: audit 2023-12-08T22:47:36.030626+0000 mon.smithi040 (mon.0) 263 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:36.924 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:37.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:37 smithi040 bash[24841]: cluster 2023-12-08T22:47:36.204815+0000 mgr.smithi040.evuiyl (mgr.14180) 82 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:37.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:37 smithi149 bash[28710]: cluster 2023-12-08T22:47:36.204815+0000 mgr.smithi040.evuiyl (mgr.14180) 82 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:38.386 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:38 smithi040 bash[24841]: audit 2023-12-08T22:47:37.653872+0000 mon.smithi149 (mon.1) 4 : audit [DBG] from='client.? 172.21.15.149:0/1857247684' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:38.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:38 smithi149 bash[28710]: audit 2023-12-08T22:47:37.653872+0000 mon.smithi149 (mon.1) 4 : audit [DBG] from='client.? 172.21.15.149:0/1857247684' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: cluster 2023-12-08T22:47:38.205113+0000 mgr.smithi040.evuiyl (mgr.14180) 83 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: audit 2023-12-08T22:47:38.400180+0000 mon.smithi040 (mon.0) 264 : audit [INF] from='client.? 172.21.15.40:0/2715866428' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "60baac98-d61c-4d21-9b9f-b696de0f1681"}]: dispatch 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: audit 2023-12-08T22:47:38.404941+0000 mon.smithi040 (mon.0) 265 : audit [INF] from='client.? 172.21.15.40:0/2715866428' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "60baac98-d61c-4d21-9b9f-b696de0f1681"}]': finished 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: cluster 2023-12-08T22:47:38.405004+0000 mon.smithi040 (mon.0) 266 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: audit 2023-12-08T22:47:38.405225+0000 mon.smithi040 (mon.0) 267 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:39 smithi149 bash[28710]: audit 2023-12-08T22:47:38.406016+0000 mon.smithi040 (mon.0) 268 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: cluster 2023-12-08T22:47:38.205113+0000 mgr.smithi040.evuiyl (mgr.14180) 83 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: audit 2023-12-08T22:47:38.400180+0000 mon.smithi040 (mon.0) 264 : audit [INF] from='client.? 172.21.15.40:0/2715866428' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "60baac98-d61c-4d21-9b9f-b696de0f1681"}]: dispatch 2023-12-08T22:47:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: audit 2023-12-08T22:47:38.404941+0000 mon.smithi040 (mon.0) 265 : audit [INF] from='client.? 172.21.15.40:0/2715866428' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "60baac98-d61c-4d21-9b9f-b696de0f1681"}]': finished 2023-12-08T22:47:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: cluster 2023-12-08T22:47:38.405004+0000 mon.smithi040 (mon.0) 266 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-12-08T22:47:39.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: audit 2023-12-08T22:47:38.405225+0000 mon.smithi040 (mon.0) 267 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:39.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:39 smithi040 bash[24841]: audit 2023-12-08T22:47:38.406016+0000 mon.smithi040 (mon.0) 268 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:40.292 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:41.049 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1702075658,"num_remapped_pgs":0} 2023-12-08T22:47:41.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: cluster 2023-12-08T22:47:40.205551+0000 mgr.smithi040.evuiyl (mgr.14180) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.288777+0000 mon.smithi040 (mon.0) 269 : audit [DBG] from='client.? 172.21.15.40:0/2055625595' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.431808+0000 mon.smithi149 (mon.1) 5 : audit [INF] from='client.? 172.21.15.149:0/4030066365' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.432556+0000 mon.smithi040 (mon.0) 270 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.439502+0000 mon.smithi040 (mon.0) 271 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]': finished 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: cluster 2023-12-08T22:47:40.439771+0000 mon.smithi040 (mon.0) 272 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.440034+0000 mon.smithi040 (mon.0) 273 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.440690+0000 mon.smithi040 (mon.0) 274 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.441118+0000 mon.smithi040 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:41 smithi040 bash[24841]: audit 2023-12-08T22:47:40.573085+0000 mon.smithi040 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.40:0/2208375840' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: cluster 2023-12-08T22:47:40.205551+0000 mgr.smithi040.evuiyl (mgr.14180) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.288777+0000 mon.smithi040 (mon.0) 269 : audit [DBG] from='client.? 172.21.15.40:0/2055625595' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.431808+0000 mon.smithi149 (mon.1) 5 : audit [INF] from='client.? 172.21.15.149:0/4030066365' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.432556+0000 mon.smithi040 (mon.0) 270 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.439502+0000 mon.smithi040 (mon.0) 271 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "55b7109f-a629-4a9f-843d-cf4f4a7c6a95"}]': finished 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: cluster 2023-12-08T22:47:40.439771+0000 mon.smithi040 (mon.0) 272 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.440034+0000 mon.smithi040 (mon.0) 273 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.440690+0000 mon.smithi040 (mon.0) 274 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.441118+0000 mon.smithi040 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:41.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:41 smithi149 bash[28710]: audit 2023-12-08T22:47:40.573085+0000 mon.smithi040 (mon.0) 276 : audit [DBG] from='client.? 172.21.15.40:0/2208375840' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:42.050 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:42.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:42 smithi040 bash[24841]: audit 2023-12-08T22:47:42.051223+0000 mon.smithi149 (mon.1) 6 : audit [DBG] from='client.? 172.21.15.149:0/3762304639' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:42.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:42 smithi149 bash[28710]: audit 2023-12-08T22:47:42.051223+0000 mon.smithi149 (mon.1) 6 : audit [DBG] from='client.? 172.21.15.149:0/3762304639' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:43.465 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:43 smithi040 bash[24841]: cluster 2023-12-08T22:47:42.205947+0000 mgr.smithi040.evuiyl (mgr.14180) 85 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:43.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:43 smithi149 bash[28710]: cluster 2023-12-08T22:47:42.205947+0000 mgr.smithi040.evuiyl (mgr.14180) 85 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.386370+0000 mon.smithi040 (mon.0) 277 : audit [INF] from='client.? 172.21.15.40:0/4228332403' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8916f69-5926-4017-99f7-639dc7157fec"}]: dispatch 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.395331+0000 mon.smithi040 (mon.0) 278 : audit [INF] from='client.? 172.21.15.40:0/4228332403' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b8916f69-5926-4017-99f7-639dc7157fec"}]': finished 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: cluster 2023-12-08T22:47:43.395398+0000 mon.smithi040 (mon.0) 279 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.395624+0000 mon.smithi040 (mon.0) 280 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.396317+0000 mon.smithi040 (mon.0) 281 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.396692+0000 mon.smithi040 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:44 smithi149 bash[28710]: audit 2023-12-08T22:47:43.397017+0000 mon.smithi040 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:44.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.386370+0000 mon.smithi040 (mon.0) 277 : audit [INF] from='client.? 172.21.15.40:0/4228332403' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b8916f69-5926-4017-99f7-639dc7157fec"}]: dispatch 2023-12-08T22:47:44.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.395331+0000 mon.smithi040 (mon.0) 278 : audit [INF] from='client.? 172.21.15.40:0/4228332403' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b8916f69-5926-4017-99f7-639dc7157fec"}]': finished 2023-12-08T22:47:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: cluster 2023-12-08T22:47:43.395398+0000 mon.smithi040 (mon.0) 279 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-12-08T22:47:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.395624+0000 mon.smithi040 (mon.0) 280 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.396317+0000 mon.smithi040 (mon.0) 281 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.396692+0000 mon.smithi040 (mon.0) 282 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:44 smithi040 bash[24841]: audit 2023-12-08T22:47:43.397017+0000 mon.smithi040 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:45.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: cluster 2023-12-08T22:47:44.206436+0000 mgr.smithi040.evuiyl (mgr.14180) 86 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:45.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.865293+0000 mon.smithi149 (mon.1) 7 : audit [INF] from='client.? 172.21.15.149:0/3726643962' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]: dispatch 2023-12-08T22:47:45.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.866563+0000 mon.smithi040 (mon.0) 284 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]: dispatch 2023-12-08T22:47:45.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.875245+0000 mon.smithi040 (mon.0) 285 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]': finished 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: cluster 2023-12-08T22:47:44.875370+0000 mon.smithi040 (mon.0) 286 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.875613+0000 mon.smithi040 (mon.0) 287 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.876174+0000 mon.smithi040 (mon.0) 288 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.876534+0000 mon.smithi040 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.876899+0000 mon.smithi040 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:45.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:45 smithi149 bash[28710]: audit 2023-12-08T22:47:44.877248+0000 mon.smithi040 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:45.367 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:45.598 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: cluster 2023-12-08T22:47:44.206436+0000 mgr.smithi040.evuiyl (mgr.14180) 86 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.865293+0000 mon.smithi149 (mon.1) 7 : audit [INF] from='client.? 172.21.15.149:0/3726643962' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.866563+0000 mon.smithi040 (mon.0) 284 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.875245+0000 mon.smithi040 (mon.0) 285 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "62eab50a-7042-4811-8c3d-c0f19fd94a6f"}]': finished 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: cluster 2023-12-08T22:47:44.875370+0000 mon.smithi040 (mon.0) 286 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.875613+0000 mon.smithi040 (mon.0) 287 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.876174+0000 mon.smithi040 (mon.0) 288 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.876534+0000 mon.smithi040 (mon.0) 289 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.876899+0000 mon.smithi040 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:45.599 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:45 smithi040 bash[24841]: audit 2023-12-08T22:47:44.877248+0000 mon.smithi040 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:46.136 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1702075664,"num_remapped_pgs":0} 2023-12-08T22:47:46.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:46 smithi040 bash[24841]: audit 2023-12-08T22:47:45.363824+0000 mon.smithi040 (mon.0) 292 : audit [DBG] from='client.? 172.21.15.40:0/719237590' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:46.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:46 smithi040 bash[24841]: audit 2023-12-08T22:47:45.650854+0000 mon.smithi040 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.40:0/3184607549' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:46.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:46 smithi149 bash[28710]: audit 2023-12-08T22:47:45.363824+0000 mon.smithi040 (mon.0) 292 : audit [DBG] from='client.? 172.21.15.40:0/719237590' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:46.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:46 smithi149 bash[28710]: audit 2023-12-08T22:47:45.650854+0000 mon.smithi040 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.40:0/3184607549' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:47.137 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:47 smithi040 bash[24841]: cluster 2023-12-08T22:47:46.206951+0000 mgr.smithi040.evuiyl (mgr.14180) 87 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:47 smithi040 bash[24841]: audit 2023-12-08T22:47:46.412537+0000 mon.smithi149 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.149:0/1866314470' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:47.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:47 smithi149 bash[28710]: cluster 2023-12-08T22:47:46.206951+0000 mgr.smithi040.evuiyl (mgr.14180) 87 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:47.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:47 smithi149 bash[28710]: audit 2023-12-08T22:47:46.412537+0000 mon.smithi149 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.149:0/1866314470' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: cluster 2023-12-08T22:47:48.207331+0000 mgr.smithi040.evuiyl (mgr.14180) 88 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.460671+0000 mon.smithi040 (mon.0) 294 : audit [INF] from='client.? 172.21.15.40:0/1878317301' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0440e2e2-443f-40d2-9fe1-c7f24fd888b2"}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.469849+0000 mon.smithi040 (mon.0) 295 : audit [INF] from='client.? 172.21.15.40:0/1878317301' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0440e2e2-443f-40d2-9fe1-c7f24fd888b2"}]': finished 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: cluster 2023-12-08T22:47:48.469913+0000 mon.smithi040 (mon.0) 296 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.470176+0000 mon.smithi040 (mon.0) 297 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.470745+0000 mon.smithi040 (mon.0) 298 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.471018+0000 mon.smithi040 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.471324+0000 mon.smithi040 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.471627+0000 mon.smithi040 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:48.471899+0000 mon.smithi040 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.187929+0000 mon.smithi149 (mon.1) 9 : audit [INF] from='client.? 172.21.15.149:0/222062408' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.188953+0000 mon.smithi040 (mon.0) 303 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.194193+0000 mon.smithi040 (mon.0) 304 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]': finished 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: cluster 2023-12-08T22:47:49.194258+0000 mon.smithi040 (mon.0) 305 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.194386+0000 mon.smithi040 (mon.0) 306 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.194654+0000 mon.smithi040 (mon.0) 307 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.194880+0000 mon.smithi040 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.195095+0000 mon.smithi040 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.195308+0000 mon.smithi040 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.195555+0000 mon.smithi040 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:49.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:49 smithi040 bash[24841]: audit 2023-12-08T22:47:49.195750+0000 mon.smithi040 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:47:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: cluster 2023-12-08T22:47:48.207331+0000 mgr.smithi040.evuiyl (mgr.14180) 88 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.460671+0000 mon.smithi040 (mon.0) 294 : audit [INF] from='client.? 172.21.15.40:0/1878317301' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0440e2e2-443f-40d2-9fe1-c7f24fd888b2"}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.469849+0000 mon.smithi040 (mon.0) 295 : audit [INF] from='client.? 172.21.15.40:0/1878317301' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0440e2e2-443f-40d2-9fe1-c7f24fd888b2"}]': finished 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: cluster 2023-12-08T22:47:48.469913+0000 mon.smithi040 (mon.0) 296 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.470176+0000 mon.smithi040 (mon.0) 297 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.470745+0000 mon.smithi040 (mon.0) 298 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.471018+0000 mon.smithi040 (mon.0) 299 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.471324+0000 mon.smithi040 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.471627+0000 mon.smithi040 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:48.471899+0000 mon.smithi040 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.187929+0000 mon.smithi149 (mon.1) 9 : audit [INF] from='client.? 172.21.15.149:0/222062408' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.188953+0000 mon.smithi040 (mon.0) 303 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.194193+0000 mon.smithi040 (mon.0) 304 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cfc204e8-f698-4c88-8f90-b51cbab447d5"}]': finished 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: cluster 2023-12-08T22:47:49.194258+0000 mon.smithi040 (mon.0) 305 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.194386+0000 mon.smithi040 (mon.0) 306 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.194654+0000 mon.smithi040 (mon.0) 307 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.194880+0000 mon.smithi040 (mon.0) 308 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.195095+0000 mon.smithi040 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.195308+0000 mon.smithi040 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.195555+0000 mon.smithi040 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:49.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:49 smithi149 bash[28710]: audit 2023-12-08T22:47:49.195750+0000 mon.smithi040 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:47:50.558 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:51.299 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1702075669,"num_remapped_pgs":0} 2023-12-08T22:47:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:51 smithi149 bash[28710]: cluster 2023-12-08T22:47:50.207849+0000 mgr.smithi040.evuiyl (mgr.14180) 89 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:51 smithi149 bash[28710]: audit 2023-12-08T22:47:50.554597+0000 mon.smithi040 (mon.0) 313 : audit [DBG] from='client.? 172.21.15.40:0/2842347992' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:51 smithi149 bash[28710]: audit 2023-12-08T22:47:50.755313+0000 mon.smithi149 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.149:0/2614762460' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:51 smithi149 bash[28710]: audit 2023-12-08T22:47:50.841781+0000 mon.smithi040 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.40:0/1381555271' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:51 smithi040 bash[24841]: cluster 2023-12-08T22:47:50.207849+0000 mgr.smithi040.evuiyl (mgr.14180) 89 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:51 smithi040 bash[24841]: audit 2023-12-08T22:47:50.554597+0000 mon.smithi040 (mon.0) 313 : audit [DBG] from='client.? 172.21.15.40:0/2842347992' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:51 smithi040 bash[24841]: audit 2023-12-08T22:47:50.755313+0000 mon.smithi149 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.149:0/2614762460' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:51 smithi040 bash[24841]: audit 2023-12-08T22:47:50.841781+0000 mon.smithi040 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.40:0/1381555271' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:52.300 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:53.392 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:53 smithi040 bash[24841]: cluster 2023-12-08T22:47:52.208360+0000 mgr.smithi040.evuiyl (mgr.14180) 90 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:53.449 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:53 smithi149 bash[28710]: cluster 2023-12-08T22:47:52.208360+0000 mgr.smithi040.evuiyl (mgr.14180) 90 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:54.333 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.638088+0000 mon.smithi149 (mon.1) 11 : audit [INF] from='client.? 172.21.15.40:0/1173902652' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]: dispatch 2023-12-08T22:47:54.333 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.639030+0000 mon.smithi040 (mon.0) 315 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]: dispatch 2023-12-08T22:47:54.333 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.647796+0000 mon.smithi040 (mon.0) 316 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]': finished 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: cluster 2023-12-08T22:47:53.647877+0000 mon.smithi040 (mon.0) 317 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.648020+0000 mon.smithi040 (mon.0) 318 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.648439+0000 mon.smithi040 (mon.0) 319 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.648710+0000 mon.smithi040 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.648996+0000 mon.smithi040 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:54.334 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.649333+0000 mon.smithi040 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:54.335 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.649591+0000 mon.smithi040 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:54.335 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.649893+0000 mon.smithi040 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:47:54.335 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:54 smithi040 bash[24841]: audit 2023-12-08T22:47:53.650231+0000 mon.smithi040 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:47:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.638088+0000 mon.smithi149 (mon.1) 11 : audit [INF] from='client.? 172.21.15.40:0/1173902652' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]: dispatch 2023-12-08T22:47:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.639030+0000 mon.smithi040 (mon.0) 315 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]: dispatch 2023-12-08T22:47:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.647796+0000 mon.smithi040 (mon.0) 316 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff0be505-e0e5-4da6-9e65-88a38b50f7c5"}]': finished 2023-12-08T22:47:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: cluster 2023-12-08T22:47:53.647877+0000 mon.smithi040 (mon.0) 317 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-12-08T22:47:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.648020+0000 mon.smithi040 (mon.0) 318 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.648439+0000 mon.smithi040 (mon.0) 319 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.648710+0000 mon.smithi040 (mon.0) 320 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.648996+0000 mon.smithi040 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.649333+0000 mon.smithi040 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.649591+0000 mon.smithi040 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.649893+0000 mon.smithi040 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:47:54.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:54 smithi149 bash[28710]: audit 2023-12-08T22:47:53.650231+0000 mon.smithi040 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:47:55.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:55 smithi040 bash[24841]: cluster 2023-12-08T22:47:54.208806+0000 mgr.smithi040.evuiyl (mgr.14180) 91 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:55 smithi149 bash[28710]: cluster 2023-12-08T22:47:54.208806+0000 mgr.smithi040.evuiyl (mgr.14180) 91 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:55.679 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:47:56.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:56 smithi040 bash[24841]: audit 2023-12-08T22:47:55.676376+0000 mon.smithi040 (mon.0) 326 : audit [DBG] from='client.? 172.21.15.40:0/950408528' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:56.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:56 smithi040 bash[24841]: audit 2023-12-08T22:47:55.982474+0000 mon.smithi040 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.40:0/1883966326' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:56.397 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:47:56.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:56 smithi149 bash[28710]: audit 2023-12-08T22:47:55.676376+0000 mon.smithi040 (mon.0) 326 : audit [DBG] from='client.? 172.21.15.40:0/950408528' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:47:56.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:56 smithi149 bash[28710]: audit 2023-12-08T22:47:55.982474+0000 mon.smithi040 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.40:0/1883966326' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-12-08T22:47:57.398 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:47:57.409 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:57 smithi040 bash[24841]: cluster 2023-12-08T22:47:56.209233+0000 mgr.smithi040.evuiyl (mgr.14180) 92 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:57.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:57 smithi149 bash[28710]: cluster 2023-12-08T22:47:56.209233+0000 mgr.smithi040.evuiyl (mgr.14180) 92 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:59.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:47:59 smithi040 bash[24841]: cluster 2023-12-08T22:47:58.209737+0000 mgr.smithi040.evuiyl (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:47:59.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:47:59 smithi149 bash[28710]: cluster 2023-12-08T22:47:58.209737+0000 mgr.smithi040.evuiyl (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:01.054 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:01.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:01 smithi040 bash[24841]: cluster 2023-12-08T22:48:00.210269+0000 mgr.smithi040.evuiyl (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:01.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:01 smithi040 bash[24841]: audit 2023-12-08T22:48:01.050708+0000 mon.smithi040 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.40:0/1718001148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:01.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:01 smithi149 bash[28710]: cluster 2023-12-08T22:48:00.210269+0000 mgr.smithi040.evuiyl (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:01.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:01 smithi149 bash[28710]: audit 2023-12-08T22:48:01.050708+0000 mon.smithi040 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.40:0/1718001148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:01.787 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:02.788 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:03.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:03 smithi040 bash[24841]: cluster 2023-12-08T22:48:02.210739+0000 mgr.smithi040.evuiyl (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:03.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:03 smithi040 bash[24841]: audit 2023-12-08T22:48:02.415601+0000 mon.smithi040 (mon.0) 329 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-12-08T22:48:03.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:03 smithi040 bash[24841]: audit 2023-12-08T22:48:02.416955+0000 mon.smithi040 (mon.0) 330 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:03.409 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:03 smithi149 bash[28710]: cluster 2023-12-08T22:48:02.210739+0000 mgr.smithi040.evuiyl (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:03.409 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:03 smithi149 bash[28710]: audit 2023-12-08T22:48:02.415601+0000 mon.smithi040 (mon.0) 329 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-12-08T22:48:03.409 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:03 smithi149 bash[28710]: audit 2023-12-08T22:48:02.416955+0000 mon.smithi040 (mon.0) 330 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:04.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:04 smithi040 bash[24841]: cephadm 2023-12-08T22:48:02.418325+0000 mgr.smithi040.evuiyl (mgr.14180) 96 : cephadm [INF] Deploying daemon osd.0 on smithi149 2023-12-08T22:48:04.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:04 smithi149 bash[28710]: cephadm 2023-12-08T22:48:02.418325+0000 mgr.smithi040.evuiyl (mgr.14180) 96 : cephadm [INF] Deploying daemon osd.0 on smithi149 2023-12-08T22:48:05.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:05 smithi149 bash[28710]: cluster 2023-12-08T22:48:04.211089+0000 mgr.smithi040.evuiyl (mgr.14180) 97 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:05.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:05 smithi040 bash[24841]: cluster 2023-12-08T22:48:04.211089+0000 mgr.smithi040.evuiyl (mgr.14180) 97 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:06.357 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:07.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:07 smithi040 bash[24841]: cluster 2023-12-08T22:48:06.211428+0000 mgr.smithi040.evuiyl (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:07.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:07 smithi040 bash[24841]: audit 2023-12-08T22:48:06.354586+0000 mon.smithi040 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.40:0/3653988615' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:07.342 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:07 smithi040 bash[24841]: audit 2023-12-08T22:48:06.661681+0000 mon.smithi040 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:07.423 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:07 smithi149 bash[28710]: cluster 2023-12-08T22:48:06.211428+0000 mgr.smithi040.evuiyl (mgr.14180) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:07.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:07 smithi149 bash[28710]: audit 2023-12-08T22:48:06.354586+0000 mon.smithi040 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.40:0/3653988615' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:07.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:07 smithi149 bash[28710]: audit 2023-12-08T22:48:06.661681+0000 mon.smithi040 (mon.0) 332 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:07.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:07 smithi149 bash[28710]: audit 2023-12-08T22:48:06.663126+0000 mon.smithi040 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-12-08T22:48:07.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:07 smithi149 bash[28710]: audit 2023-12-08T22:48:06.664266+0000 mon.smithi040 (mon.0) 334 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:07.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:07 smithi040 bash[24841]: audit 2023-12-08T22:48:06.663126+0000 mon.smithi040 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-12-08T22:48:07.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:07 smithi040 bash[24841]: audit 2023-12-08T22:48:06.664266+0000 mon.smithi040 (mon.0) 334 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:08.425 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:08.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:08 smithi040 bash[24841]: cephadm 2023-12-08T22:48:06.665246+0000 mgr.smithi040.evuiyl (mgr.14180) 99 : cephadm [INF] Deploying daemon osd.2 on smithi149 2023-12-08T22:48:08.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:08 smithi149 bash[28710]: cephadm 2023-12-08T22:48:06.665246+0000 mgr.smithi040.evuiyl (mgr.14180) 99 : cephadm [INF] Deploying daemon osd.2 on smithi149 2023-12-08T22:48:09.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:09 smithi149 bash[28710]: cluster 2023-12-08T22:48:08.211807+0000 mgr.smithi040.evuiyl (mgr.14180) 100 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:09.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:09 smithi040 bash[24841]: cluster 2023-12-08T22:48:08.211807+0000 mgr.smithi040.evuiyl (mgr.14180) 100 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:10.540 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:10 smithi040 bash[24841]: audit 2023-12-08T22:48:10.094885+0000 mon.smithi040 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-12-08T22:48:10.541 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:10 smithi040 bash[24841]: audit 2023-12-08T22:48:10.096199+0000 mon.smithi040 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:10.551 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:10 smithi149 bash[28710]: audit 2023-12-08T22:48:10.094885+0000 mon.smithi040 (mon.0) 335 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-12-08T22:48:10.551 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:10 smithi149 bash[28710]: audit 2023-12-08T22:48:10.096199+0000 mon.smithi040 (mon.0) 336 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:11.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:11 smithi149 bash[28710]: cephadm 2023-12-08T22:48:10.097168+0000 mgr.smithi040.evuiyl (mgr.14180) 101 : cephadm [INF] Deploying daemon osd.1 on smithi040 2023-12-08T22:48:11.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:11 smithi149 bash[28710]: cluster 2023-12-08T22:48:10.212105+0000 mgr.smithi040.evuiyl (mgr.14180) 102 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:11.838 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:11 smithi040 bash[24841]: cephadm 2023-12-08T22:48:10.097168+0000 mgr.smithi040.evuiyl (mgr.14180) 101 : cephadm [INF] Deploying daemon osd.1 on smithi040 2023-12-08T22:48:11.838 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:11 smithi040 bash[24841]: cluster 2023-12-08T22:48:10.212105+0000 mgr.smithi040.evuiyl (mgr.14180) 102 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:12.906 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:13.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: audit 2023-12-08T22:48:12.016393+0000 mon.smithi040 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:13.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: audit 2023-12-08T22:48:12.017516+0000 mon.smithi040 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-12-08T22:48:13.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: audit 2023-12-08T22:48:12.018683+0000 mon.smithi040 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:13.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: cephadm 2023-12-08T22:48:12.019764+0000 mgr.smithi040.evuiyl (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.4 on smithi149 2023-12-08T22:48:13.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: cluster 2023-12-08T22:48:12.212490+0000 mgr.smithi040.evuiyl (mgr.14180) 104 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:13.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:13 smithi040 bash[24841]: audit 2023-12-08T22:48:12.902943+0000 mon.smithi040 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.40:0/3661903954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: audit 2023-12-08T22:48:12.016393+0000 mon.smithi040 (mon.0) 337 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: audit 2023-12-08T22:48:12.017516+0000 mon.smithi040 (mon.0) 338 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: audit 2023-12-08T22:48:12.018683+0000 mon.smithi040 (mon.0) 339 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: cephadm 2023-12-08T22:48:12.019764+0000 mgr.smithi040.evuiyl (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.4 on smithi149 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: cluster 2023-12-08T22:48:12.212490+0000 mgr.smithi040.evuiyl (mgr.14180) 104 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:13.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:13 smithi149 bash[28710]: audit 2023-12-08T22:48:12.902943+0000 mon.smithi040 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.40:0/3661903954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:14.150 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:15.152 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:15.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:15 smithi040 bash[24841]: cluster 2023-12-08T22:48:14.212864+0000 mgr.smithi040.evuiyl (mgr.14180) 105 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:15.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:15 smithi040 bash[24841]: audit 2023-12-08T22:48:14.428409+0000 mon.smithi149 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-08T22:48:15.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:15 smithi040 bash[24841]: audit 2023-12-08T22:48:14.429296+0000 mon.smithi040 (mon.0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-08T22:48:15.533 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:15 smithi149 bash[28710]: cluster 2023-12-08T22:48:14.212864+0000 mgr.smithi040.evuiyl (mgr.14180) 105 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:15.534 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:15 smithi149 bash[28710]: audit 2023-12-08T22:48:14.428409+0000 mon.smithi149 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-08T22:48:15.534 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:15 smithi149 bash[28710]: audit 2023-12-08T22:48:14.429296+0000 mon.smithi040 (mon.0) 341 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.272144+0000 mon.smithi040 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: cluster 2023-12-08T22:48:15.272286+0000 mon.smithi040 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.272934+0000 mon.smithi040 (mon.0) 344 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.273326+0000 mon.smithi149 (mon.1) 13 : audit [INF] from='osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.273331+0000 mon.smithi040 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.273498+0000 mon.smithi040 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.273722+0000 mon.smithi040 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.273959+0000 mon.smithi040 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.274141+0000 mon.smithi040 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.274368+0000 mon.smithi040 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.274549+0000 mon.smithi040 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.278445+0000 mon.smithi040 (mon.0) 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:16.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.877430+0000 mon.smithi040 (mon.0) 353 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:16.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.878587+0000 mon.smithi040 (mon.0) 354 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-12-08T22:48:16.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:16 smithi040 bash[24841]: audit 2023-12-08T22:48:15.879579+0000 mon.smithi040 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.272144+0000 mon.smithi040 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: cluster 2023-12-08T22:48:15.272286+0000 mon.smithi040 (mon.0) 343 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.272934+0000 mon.smithi040 (mon.0) 344 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.273326+0000 mon.smithi149 (mon.1) 13 : audit [INF] from='osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.273331+0000 mon.smithi040 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:16.549 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.273498+0000 mon.smithi040 (mon.0) 346 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.273722+0000 mon.smithi040 (mon.0) 347 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.273959+0000 mon.smithi040 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.274141+0000 mon.smithi040 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.274368+0000 mon.smithi040 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.274549+0000 mon.smithi040 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.278445+0000 mon.smithi040 (mon.0) 352 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.877430+0000 mon.smithi040 (mon.0) 353 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:16.550 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.878587+0000 mon.smithi040 (mon.0) 354 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-12-08T22:48:16.551 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:16 smithi149 bash[28710]: audit 2023-12-08T22:48:15.879579+0000 mon.smithi040 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: cephadm 2023-12-08T22:48:15.880416+0000 mgr.smithi040.evuiyl (mgr.14180) 106 : cephadm [INF] Deploying daemon osd.3 on smithi040 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: cluster 2023-12-08T22:48:16.213254+0000 mgr.smithi040.evuiyl (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.285351+0000 mon.smithi040 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: cluster 2023-12-08T22:48:16.285514+0000 mon.smithi040 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.286241+0000 mon.smithi040 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.286781+0000 mon.smithi040 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.287140+0000 mon.smithi040 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.291392+0000 mon.smithi040 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.291671+0000 mon.smithi040 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:17.383 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.291953+0000 mon.smithi040 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:17.384 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.292237+0000 mon.smithi040 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:17.384 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.292547+0000 mon.smithi040 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:17.384 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:17 smithi149 bash[28710]: audit 2023-12-08T22:48:16.292833+0000 mon.smithi040 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:17.586 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: cephadm 2023-12-08T22:48:15.880416+0000 mgr.smithi040.evuiyl (mgr.14180) 106 : cephadm [INF] Deploying daemon osd.3 on smithi040 2023-12-08T22:48:17.586 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: cluster 2023-12-08T22:48:16.213254+0000 mgr.smithi040.evuiyl (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.285351+0000 mon.smithi040 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: cluster 2023-12-08T22:48:16.285514+0000 mon.smithi040 (mon.0) 357 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.286241+0000 mon.smithi040 (mon.0) 358 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.286781+0000 mon.smithi040 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.287140+0000 mon.smithi040 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.291392+0000 mon.smithi040 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.291671+0000 mon.smithi040 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.291953+0000 mon.smithi040 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.292237+0000 mon.smithi040 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.292547+0000 mon.smithi040 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:17.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:17 smithi040 bash[24841]: audit 2023-12-08T22:48:16.292833+0000 mon.smithi040 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: cluster 2023-12-08T22:48:15.472968+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: cluster 2023-12-08T22:48:15.473024+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: cluster 2023-12-08T22:48:17.296498+0000 mon.smithi040 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196] boot 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: cluster 2023-12-08T22:48:17.296580+0000 mon.smithi040 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.297368+0000 mon.smithi040 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.297795+0000 mon.smithi040 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.298090+0000 mon.smithi040 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.302610+0000 mon.smithi040 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.303047+0000 mon.smithi040 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.303307+0000 mon.smithi040 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.303570+0000 mon.smithi040 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.303831+0000 mon.smithi040 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.666024+0000 mon.smithi040 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.667260+0000 mon.smithi040 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-12-08T22:48:18.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:18 smithi149 bash[28710]: audit 2023-12-08T22:48:17.668332+0000 mon.smithi040 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:18.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: cluster 2023-12-08T22:48:15.472968+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: cluster 2023-12-08T22:48:15.473024+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: cluster 2023-12-08T22:48:17.296498+0000 mon.smithi040 (mon.0) 367 : cluster [INF] osd.0 [v2:172.21.15.149:6800/3853880196,v1:172.21.15.149:6801/3853880196] boot 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: cluster 2023-12-08T22:48:17.296580+0000 mon.smithi040 (mon.0) 368 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.297368+0000 mon.smithi040 (mon.0) 369 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.297795+0000 mon.smithi040 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.298090+0000 mon.smithi040 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.302610+0000 mon.smithi040 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.303047+0000 mon.smithi040 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.303307+0000 mon.smithi040 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.303570+0000 mon.smithi040 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.303831+0000 mon.smithi040 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.666024+0000 mon.smithi040 (mon.0) 377 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.667260+0000 mon.smithi040 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-12-08T22:48:18.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:18 smithi040 bash[24841]: audit 2023-12-08T22:48:17.668332+0000 mon.smithi040 (mon.0) 379 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:19.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: cephadm 2023-12-08T22:48:17.669159+0000 mgr.smithi040.evuiyl (mgr.14180) 108 : cephadm [INF] Deploying daemon osd.6 on smithi149 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: cluster 2023-12-08T22:48:18.213760+0000 mgr.smithi040.evuiyl (mgr.14180) 109 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: cluster 2023-12-08T22:48:18.311997+0000 mon.smithi040 (mon.0) 380 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.312272+0000 mon.smithi040 (mon.0) 381 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.312953+0000 mon.smithi040 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.313270+0000 mon.smithi040 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.313516+0000 mon.smithi040 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.313859+0000 mon.smithi040 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.314130+0000 mon.smithi040 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:19.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:19 smithi040 bash[24841]: audit 2023-12-08T22:48:18.314400+0000 mon.smithi040 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: cephadm 2023-12-08T22:48:17.669159+0000 mgr.smithi040.evuiyl (mgr.14180) 108 : cephadm [INF] Deploying daemon osd.6 on smithi149 2023-12-08T22:48:19.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: cluster 2023-12-08T22:48:18.213760+0000 mgr.smithi040.evuiyl (mgr.14180) 109 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: cluster 2023-12-08T22:48:18.311997+0000 mon.smithi040 (mon.0) 380 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.312272+0000 mon.smithi040 (mon.0) 381 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.312953+0000 mon.smithi040 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.313270+0000 mon.smithi040 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.313516+0000 mon.smithi040 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.313859+0000 mon.smithi040 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:19.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.314130+0000 mon.smithi040 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:19.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:19 smithi149 bash[28710]: audit 2023-12-08T22:48:18.314400+0000 mon.smithi040 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:20.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:20 smithi149 bash[28710]: audit 2023-12-08T22:48:20.169111+0000 mon.smithi149 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-08T22:48:20.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:20 smithi149 bash[28710]: audit 2023-12-08T22:48:20.170248+0000 mon.smithi040 (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-08T22:48:20.646 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:20 smithi040 bash[24841]: audit 2023-12-08T22:48:20.169111+0000 mon.smithi149 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-08T22:48:20.646 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:20 smithi040 bash[24841]: audit 2023-12-08T22:48:20.170248+0000 mon.smithi040 (mon.0) 388 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-12-08T22:48:21.018 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: cluster 2023-12-08T22:48:20.214289+0000 mgr.smithi040.evuiyl (mgr.14180) 110 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.319858+0000 mon.smithi040 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: cluster 2023-12-08T22:48:20.319961+0000 mon.smithi040 (mon.0) 390 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.320366+0000 mon.smithi040 (mon.0) 391 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.321061+0000 mon.smithi040 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.321515+0000 mon.smithi040 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.321971+0000 mon.smithi040 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.322425+0000 mon.smithi040 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.322892+0000 mon.smithi040 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:21.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.323274+0000 mon.smithi040 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:21.562 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.324154+0000 mon.smithi149 (mon.1) 15 : audit [INF] from='osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:21.562 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:20.324824+0000 mon.smithi040 (mon.0) 398 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:21.562 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:21 smithi040 bash[24841]: audit 2023-12-08T22:48:21.014572+0000 mon.smithi040 (mon.0) 399 : audit [DBG] from='client.? 172.21.15.40:0/1309922380' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: cluster 2023-12-08T22:48:20.214289+0000 mgr.smithi040.evuiyl (mgr.14180) 110 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.319858+0000 mon.smithi040 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: cluster 2023-12-08T22:48:20.319961+0000 mon.smithi040 (mon.0) 390 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.320366+0000 mon.smithi040 (mon.0) 391 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.321061+0000 mon.smithi040 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.321515+0000 mon.smithi040 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.321971+0000 mon.smithi040 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.322425+0000 mon.smithi040 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.322892+0000 mon.smithi040 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:21.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.323274+0000 mon.smithi040 (mon.0) 397 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:21.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.324154+0000 mon.smithi149 (mon.1) 15 : audit [INF] from='osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:21.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:20.324824+0000 mon.smithi040 (mon.0) 398 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:21.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:21 smithi149 bash[28710]: audit 2023-12-08T22:48:21.014572+0000 mon.smithi040 (mon.0) 399 : audit [DBG] from='client.? 172.21.15.40:0/1309922380' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:22.497 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.323884+0000 mon.smithi040 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: cluster 2023-12-08T22:48:21.324098+0000 mon.smithi040 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.324861+0000 mon.smithi040 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.325147+0000 mon.smithi040 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.325332+0000 mon.smithi040 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.325528+0000 mon.smithi040 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:22.498 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.325751+0000 mon.smithi040 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:22.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.325951+0000 mon.smithi040 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:22.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.330618+0000 mon.smithi040 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:22.499 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:22 smithi149 bash[28710]: audit 2023-12-08T22:48:21.331333+0000 mon.smithi040 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:22.643 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.323884+0000 mon.smithi040 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:22.643 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: cluster 2023-12-08T22:48:21.324098+0000 mon.smithi040 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.324861+0000 mon.smithi040 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.325147+0000 mon.smithi040 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.325332+0000 mon.smithi040 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.325528+0000 mon.smithi040 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.325751+0000 mon.smithi040 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.325951+0000 mon.smithi040 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.330618+0000 mon.smithi040 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:22.644 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:22 smithi040 bash[24841]: audit 2023-12-08T22:48:21.331333+0000 mon.smithi040 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:22.894 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1702075697,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:23.615 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: cluster 2023-12-08T22:48:21.167651+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:23.615 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: cluster 2023-12-08T22:48:21.167724+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: cluster 2023-12-08T22:48:22.214871+0000 mgr.smithi040.evuiyl (mgr.14180) 111 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: cluster 2023-12-08T22:48:22.330980+0000 mon.smithi040 (mon.0) 410 : cluster [INF] osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873] boot 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: cluster 2023-12-08T22:48:22.331020+0000 mon.smithi040 (mon.0) 411 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.331557+0000 mon.smithi040 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.332192+0000 mon.smithi040 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.332643+0000 mon.smithi040 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.333040+0000 mon.smithi040 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.333508+0000 mon.smithi040 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.333959+0000 mon.smithi040 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:23.616 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:23 smithi149 bash[28710]: audit 2023-12-08T22:48:22.337638+0000 mon.smithi040 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: cluster 2023-12-08T22:48:21.167651+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: cluster 2023-12-08T22:48:21.167724+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: cluster 2023-12-08T22:48:22.214871+0000 mgr.smithi040.evuiyl (mgr.14180) 111 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: cluster 2023-12-08T22:48:22.330980+0000 mon.smithi040 (mon.0) 410 : cluster [INF] osd.2 [v2:172.21.15.149:6808/1750637873,v1:172.21.15.149:6809/1750637873] boot 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: cluster 2023-12-08T22:48:22.331020+0000 mon.smithi040 (mon.0) 411 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.331557+0000 mon.smithi040 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.332192+0000 mon.smithi040 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.332643+0000 mon.smithi040 (mon.0) 414 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.333040+0000 mon.smithi040 (mon.0) 415 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.333508+0000 mon.smithi040 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.333959+0000 mon.smithi040 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:23 smithi040 bash[24841]: audit 2023-12-08T22:48:22.337638+0000 mon.smithi040 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:23.895 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:24.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:23.584188+0000 mon.smithi040 (mon.0) 419 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.085916+0000 mon.smithi040 (mon.0) 420 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.087534+0000 mon.smithi040 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.088654+0000 mon.smithi040 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: cephadm 2023-12-08T22:48:24.089549+0000 mgr.smithi040.evuiyl (mgr.14180) 112 : cephadm [INF] Deploying daemon osd.5 on smithi040 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: cluster 2023-12-08T22:48:24.131704+0000 mon.smithi040 (mon.0) 423 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.131912+0000 mon.smithi040 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.132349+0000 mon.smithi040 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.132624+0000 mon.smithi040 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.132893+0000 mon.smithi040 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.133138+0000 mon.smithi040 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: audit 2023-12-08T22:48:24.133385+0000 mon.smithi040 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:24 smithi040 bash[24841]: cluster 2023-12-08T22:48:24.215323+0000 mgr.smithi040.evuiyl (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:23.584188+0000 mon.smithi040 (mon.0) 419 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.085916+0000 mon.smithi040 (mon.0) 420 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.087534+0000 mon.smithi040 (mon.0) 421 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.088654+0000 mon.smithi040 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: cephadm 2023-12-08T22:48:24.089549+0000 mgr.smithi040.evuiyl (mgr.14180) 112 : cephadm [INF] Deploying daemon osd.5 on smithi040 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: cluster 2023-12-08T22:48:24.131704+0000 mon.smithi040 (mon.0) 423 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.131912+0000 mon.smithi040 (mon.0) 424 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.132349+0000 mon.smithi040 (mon.0) 425 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.132624+0000 mon.smithi040 (mon.0) 426 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.132893+0000 mon.smithi040 (mon.0) 427 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.133138+0000 mon.smithi040 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: audit 2023-12-08T22:48:24.133385+0000 mon.smithi040 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:24 smithi149 bash[28710]: cluster 2023-12-08T22:48:24.215323+0000 mgr.smithi040.evuiyl (mgr.14180) 113 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:26.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:26 smithi040 bash[24841]: audit 2023-12-08T22:48:26.166578+0000 mon.smithi149 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-08T22:48:26.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:26 smithi040 bash[24841]: audit 2023-12-08T22:48:26.167465+0000 mon.smithi040 (mon.0) 430 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-08T22:48:26.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:26 smithi149 bash[28710]: audit 2023-12-08T22:48:26.166578+0000 mon.smithi149 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-08T22:48:26.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:26 smithi149 bash[28710]: audit 2023-12-08T22:48:26.167465+0000 mon.smithi040 (mon.0) 430 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-12-08T22:48:27.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: cluster 2023-12-08T22:48:26.215636+0000 mgr.smithi040.evuiyl (mgr.14180) 114 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.222005+0000 mon.smithi040 (mon.0) 431 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: cluster 2023-12-08T22:48:26.222095+0000 mon.smithi040 (mon.0) 432 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.222578+0000 mon.smithi040 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.223311+0000 mon.smithi040 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.223677+0000 mon.smithi149 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.223872+0000 mon.smithi040 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.226628+0000 mon.smithi040 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.227007+0000 mon.smithi040 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.227384+0000 mon.smithi040 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:26.228014+0000 mon.smithi040 (mon.0) 439 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:27.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:27 smithi040 bash[24841]: audit 2023-12-08T22:48:27.161792+0000 mon.smithi040 (mon.0) 440 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-12-08T22:48:27.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: cluster 2023-12-08T22:48:26.215636+0000 mgr.smithi040.evuiyl (mgr.14180) 114 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:27.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.222005+0000 mon.smithi040 (mon.0) 431 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-12-08T22:48:27.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: cluster 2023-12-08T22:48:26.222095+0000 mon.smithi040 (mon.0) 432 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.222578+0000 mon.smithi040 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.223311+0000 mon.smithi040 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.223677+0000 mon.smithi149 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.223872+0000 mon.smithi040 (mon.0) 435 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.226628+0000 mon.smithi040 (mon.0) 436 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.227007+0000 mon.smithi040 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.227384+0000 mon.smithi040 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:26.228014+0000 mon.smithi040 (mon.0) 439 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:27.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:27 smithi149 bash[28710]: audit 2023-12-08T22:48:27.161792+0000 mon.smithi040 (mon.0) 440 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-12-08T22:48:28.243 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.230906+0000 mon.smithi040 (mon.0) 441 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.231000+0000 mon.smithi040 (mon.0) 442 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: cluster 2023-12-08T22:48:27.231100+0000 mon.smithi040 (mon.0) 443 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.231600+0000 mon.smithi040 (mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.232211+0000 mon.smithi040 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.232405+0000 mon.smithi040 (mon.0) 446 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.232713+0000 mon.smithi040 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.232903+0000 mon.smithi040 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.233113+0000 mon.smithi040 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.233334+0000 mon.smithi040 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:28.244 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:28 smithi040 bash[24841]: audit 2023-12-08T22:48:27.238409+0000 mon.smithi040 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:28.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.230906+0000 mon.smithi040 (mon.0) 441 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:28.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.231000+0000 mon.smithi040 (mon.0) 442 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-12-08T22:48:28.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: cluster 2023-12-08T22:48:27.231100+0000 mon.smithi040 (mon.0) 443 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.231600+0000 mon.smithi040 (mon.0) 444 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.232211+0000 mon.smithi040 (mon.0) 445 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.232405+0000 mon.smithi040 (mon.0) 446 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.232713+0000 mon.smithi040 (mon.0) 447 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.232903+0000 mon.smithi040 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.233113+0000 mon.smithi040 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.233334+0000 mon.smithi040 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:28.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:28 smithi149 bash[28710]: audit 2023-12-08T22:48:27.238409+0000 mon.smithi040 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:29.297 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: cluster 2023-12-08T22:48:27.198866+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:29.298 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: cluster 2023-12-08T22:48:27.198955+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:29.298 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: cluster 2023-12-08T22:48:28.216143+0000 mgr.smithi040.evuiyl (mgr.14180) 115 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:29.298 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.234602+0000 mon.smithi040 (mon.0) 452 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:29.298 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: cluster 2023-12-08T22:48:28.234688+0000 mon.smithi040 (mon.0) 453 : cluster [INF] osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408] boot 2023-12-08T22:48:29.298 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: cluster 2023-12-08T22:48:28.234721+0000 mon.smithi040 (mon.0) 454 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2023-12-08T22:48:29.299 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.234880+0000 mon.smithi040 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:29.299 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.236330+0000 mon.smithi040 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:29.299 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.237322+0000 mon.smithi040 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:29.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: cluster 2023-12-08T22:48:27.198866+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:29.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: cluster 2023-12-08T22:48:27.198955+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:29.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: cluster 2023-12-08T22:48:28.216143+0000 mgr.smithi040.evuiyl (mgr.14180) 115 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.234602+0000 mon.smithi040 (mon.0) 452 : audit [INF] from='osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: cluster 2023-12-08T22:48:28.234688+0000 mon.smithi040 (mon.0) 453 : cluster [INF] osd.4 [v2:172.21.15.149:6816/776718408,v1:172.21.15.149:6817/776718408] boot 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: cluster 2023-12-08T22:48:28.234721+0000 mon.smithi040 (mon.0) 454 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.234880+0000 mon.smithi040 (mon.0) 455 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.236330+0000 mon.smithi040 (mon.0) 456 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.237322+0000 mon.smithi040 (mon.0) 457 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.237839+0000 mon.smithi040 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.238363+0000 mon.smithi040 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.243061+0000 mon.smithi040 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.243563+0000 mon.smithi040 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-12-08T22:48:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:29 smithi149 bash[28710]: audit 2023-12-08T22:48:28.711381+0000 mon.smithi040 (mon.0) 462 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:29.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.237839+0000 mon.smithi040 (mon.0) 458 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:29.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.238363+0000 mon.smithi040 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:29.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.243061+0000 mon.smithi040 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:29.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.243563+0000 mon.smithi040 (mon.0) 461 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-12-08T22:48:29.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:29 smithi040 bash[24841]: audit 2023-12-08T22:48:28.711381+0000 mon.smithi040 (mon.0) 462 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:30.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: cluster 2023-12-08T22:48:28.193010+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:30.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: cluster 2023-12-08T22:48:28.193111+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:30.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.241323+0000 mon.smithi040 (mon.0) 463 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:30.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.251249+0000 mon.smithi040 (mon.0) 464 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: cluster 2023-12-08T22:48:29.251347+0000 mon.smithi040 (mon.0) 465 : cluster [INF] osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883] boot 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: cluster 2023-12-08T22:48:29.251389+0000 mon.smithi040 (mon.0) 466 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.251819+0000 mon.smithi040 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.252251+0000 mon.smithi040 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.252562+0000 mon.smithi040 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.252861+0000 mon.smithi040 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.253264+0000 mon.smithi040 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:30 smithi040 bash[24841]: audit 2023-12-08T22:48:29.254144+0000 mon.smithi040 (mon.0) 472 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-12-08T22:48:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: cluster 2023-12-08T22:48:28.193010+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: cluster 2023-12-08T22:48:28.193111+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.241323+0000 mon.smithi040 (mon.0) 463 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.251249+0000 mon.smithi040 (mon.0) 464 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: cluster 2023-12-08T22:48:29.251347+0000 mon.smithi040 (mon.0) 465 : cluster [INF] osd.1 [v2:172.21.15.40:6802/2442512883,v1:172.21.15.40:6803/2442512883] boot 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: cluster 2023-12-08T22:48:29.251389+0000 mon.smithi040 (mon.0) 466 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.251819+0000 mon.smithi040 (mon.0) 467 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.252251+0000 mon.smithi040 (mon.0) 468 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.252562+0000 mon.smithi040 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.252861+0000 mon.smithi040 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.253264+0000 mon.smithi040 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:30.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:30 smithi149 bash[28710]: audit 2023-12-08T22:48:29.254144+0000 mon.smithi040 (mon.0) 472 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-12-08T22:48:30.588 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:31.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: cluster 2023-12-08T22:48:30.216579+0000 mgr.smithi040.evuiyl (mgr.14180) 116 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-12-08T22:48:31.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.261097+0000 mon.smithi040 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-12-08T22:48:31.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: cluster 2023-12-08T22:48:30.261194+0000 mon.smithi040 (mon.0) 474 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2023-12-08T22:48:31.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.261299+0000 mon.smithi040 (mon.0) 475 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:31.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.261532+0000 mon.smithi040 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.261687+0000 mon.smithi040 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.261871+0000 mon.smithi040 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.584828+0000 mon.smithi040 (mon.0) 479 : audit [DBG] from='client.? 172.21.15.40:0/884854421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.693630+0000 mon.smithi149 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-08T22:48:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:31 smithi040 bash[24841]: audit 2023-12-08T22:48:30.694767+0000 mon.smithi040 (mon.0) 480 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-08T22:48:31.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: cluster 2023-12-08T22:48:30.216579+0000 mgr.smithi040.evuiyl (mgr.14180) 116 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-12-08T22:48:31.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.261097+0000 mon.smithi040 (mon.0) 473 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-12-08T22:48:31.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: cluster 2023-12-08T22:48:30.261194+0000 mon.smithi040 (mon.0) 474 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.261299+0000 mon.smithi040 (mon.0) 475 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.261532+0000 mon.smithi040 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.261687+0000 mon.smithi040 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.261871+0000 mon.smithi040 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.584828+0000 mon.smithi040 (mon.0) 479 : audit [DBG] from='client.? 172.21.15.40:0/884854421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.693630+0000 mon.smithi149 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-08T22:48:31.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:31 smithi149 bash[28710]: audit 2023-12-08T22:48:30.694767+0000 mon.smithi040 (mon.0) 480 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-12-08T22:48:31.586 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":26,"num_osds":8,"num_up_osds":4,"osd_up_since":1702075709,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:32.415 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.269933+0000 mon.smithi040 (mon.0) 481 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-12-08T22:48:32.415 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: cluster 2023-12-08T22:48:31.270107+0000 mon.smithi040 (mon.0) 482 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2023-12-08T22:48:32.415 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.270280+0000 mon.smithi040 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.270500+0000 mon.smithi149 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.270681+0000 mon.smithi040 (mon.0) 484 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.270920+0000 mon.smithi040 (mon.0) 485 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.271199+0000 mon.smithi040 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.271634+0000 mon.smithi040 (mon.0) 487 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.819559+0000 mon.smithi040 (mon.0) 488 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.821325+0000 mon.smithi040 (mon.0) 489 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-12-08T22:48:32.416 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:32 smithi040 bash[24841]: audit 2023-12-08T22:48:31.822659+0000 mon.smithi040 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:32.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.269933+0000 mon.smithi040 (mon.0) 481 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: cluster 2023-12-08T22:48:31.270107+0000 mon.smithi040 (mon.0) 482 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.270280+0000 mon.smithi040 (mon.0) 483 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.270500+0000 mon.smithi149 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.270681+0000 mon.smithi040 (mon.0) 484 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.270920+0000 mon.smithi040 (mon.0) 485 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.271199+0000 mon.smithi040 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.271634+0000 mon.smithi040 (mon.0) 487 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.819559+0000 mon.smithi040 (mon.0) 488 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.821325+0000 mon.smithi040 (mon.0) 489 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-12-08T22:48:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:32 smithi149 bash[28710]: audit 2023-12-08T22:48:31.822659+0000 mon.smithi040 (mon.0) 490 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:48:32.587 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: cephadm 2023-12-08T22:48:31.823819+0000 mgr.smithi040.evuiyl (mgr.14180) 117 : cephadm [INF] Deploying daemon osd.7 on smithi040 2023-12-08T22:48:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: cluster 2023-12-08T22:48:32.217069+0000 mgr.smithi040.evuiyl (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-08T22:48:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.273940+0000 mon.smithi040 (mon.0) 491 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: cluster 2023-12-08T22:48:32.274033+0000 mon.smithi040 (mon.0) 492 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2023-12-08T22:48:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.274569+0000 mon.smithi040 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.274863+0000 mon.smithi040 (mon.0) 494 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.275103+0000 mon.smithi040 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.275443+0000 mon.smithi040 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:33 smithi149 bash[28710]: audit 2023-12-08T22:48:32.281916+0000 mon.smithi040 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: cephadm 2023-12-08T22:48:31.823819+0000 mgr.smithi040.evuiyl (mgr.14180) 117 : cephadm [INF] Deploying daemon osd.7 on smithi040 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: cluster 2023-12-08T22:48:32.217069+0000 mgr.smithi040.evuiyl (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 unknown; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.273940+0000 mon.smithi040 (mon.0) 491 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi149", "root=default"]}]': finished 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: cluster 2023-12-08T22:48:32.274033+0000 mon.smithi040 (mon.0) 492 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.274569+0000 mon.smithi040 (mon.0) 493 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.274863+0000 mon.smithi040 (mon.0) 494 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:33.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.275103+0000 mon.smithi040 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:33.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.275443+0000 mon.smithi040 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:33.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:33 smithi040 bash[24841]: audit 2023-12-08T22:48:32.281916+0000 mon.smithi040 (mon.0) 497 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:34.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: cluster 2023-12-08T22:48:31.702728+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:34.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: cluster 2023-12-08T22:48:31.702787+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:34.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: cluster 2023-12-08T22:48:33.281261+0000 mon.smithi040 (mon.0) 498 : cluster [INF] osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462] boot 2023-12-08T22:48:34.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: cluster 2023-12-08T22:48:33.281313+0000 mon.smithi040 (mon.0) 499 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2023-12-08T22:48:34.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.281856+0000 mon.smithi040 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.282190+0000 mon.smithi040 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.282415+0000 mon.smithi040 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.282775+0000 mon.smithi040 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.825390+0000 mon.smithi040 (mon.0) 504 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:34 smithi040 bash[24841]: audit 2023-12-08T22:48:33.953632+0000 mon.smithi040 (mon.0) 505 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-12-08T22:48:34.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: cluster 2023-12-08T22:48:31.702728+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:34.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: cluster 2023-12-08T22:48:31.702787+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:34.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: cluster 2023-12-08T22:48:33.281261+0000 mon.smithi040 (mon.0) 498 : cluster [INF] osd.6 [v2:172.21.15.149:6824/152265462,v1:172.21.15.149:6825/152265462] boot 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: cluster 2023-12-08T22:48:33.281313+0000 mon.smithi040 (mon.0) 499 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.281856+0000 mon.smithi040 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.282190+0000 mon.smithi040 (mon.0) 501 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.282415+0000 mon.smithi040 (mon.0) 502 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.282775+0000 mon.smithi040 (mon.0) 503 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.825390+0000 mon.smithi040 (mon.0) 504 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:34.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:34 smithi149 bash[28710]: audit 2023-12-08T22:48:33.953632+0000 mon.smithi040 (mon.0) 505 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-12-08T22:48:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: cluster 2023-12-08T22:48:34.217840+0000 mgr.smithi040.evuiyl (mgr.14180) 119 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-08T22:48:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: audit 2023-12-08T22:48:34.294327+0000 mon.smithi040 (mon.0) 506 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-12-08T22:48:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: cluster 2023-12-08T22:48:34.294378+0000 mon.smithi040 (mon.0) 507 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2023-12-08T22:48:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: audit 2023-12-08T22:48:34.294552+0000 mon.smithi040 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: audit 2023-12-08T22:48:34.294984+0000 mon.smithi040 (mon.0) 509 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:35.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: audit 2023-12-08T22:48:34.295272+0000 mon.smithi040 (mon.0) 510 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:35.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:35 smithi149 bash[28710]: audit 2023-12-08T22:48:34.295624+0000 mon.smithi040 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: cluster 2023-12-08T22:48:34.217840+0000 mgr.smithi040.evuiyl (mgr.14180) 119 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: audit 2023-12-08T22:48:34.294327+0000 mon.smithi040 (mon.0) 506 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: cluster 2023-12-08T22:48:34.294378+0000 mon.smithi040 (mon.0) 507 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: audit 2023-12-08T22:48:34.294552+0000 mon.smithi040 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: audit 2023-12-08T22:48:34.294984+0000 mon.smithi040 (mon.0) 509 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: audit 2023-12-08T22:48:34.295272+0000 mon.smithi040 (mon.0) 510 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:35 smithi040 bash[24841]: audit 2023-12-08T22:48:34.295624+0000 mon.smithi040 (mon.0) 511 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:35.301114+0000 mon.smithi040 (mon.0) 512 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: cluster 2023-12-08T22:48:35.301257+0000 mon.smithi040 (mon.0) 513 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2023-12-08T22:48:36.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:35.301799+0000 mon.smithi040 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:35.302084+0000 mon.smithi040 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:35.302775+0000 mon.smithi040 (mon.0) 516 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:35.308477+0000 mon.smithi040 (mon.0) 517 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: cluster 2023-12-08T22:48:36.301247+0000 mon.smithi040 (mon.0) 518 : cluster [INF] osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084] boot 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: cluster 2023-12-08T22:48:36.301277+0000 mon.smithi040 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:36.301542+0000 mon.smithi040 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:36.301880+0000 mon.smithi040 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:36 smithi149 bash[28710]: audit 2023-12-08T22:48:36.302161+0000 mon.smithi040 (mon.0) 522 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:36.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:35.301114+0000 mon.smithi040 (mon.0) 512 : audit [INF] from='osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:36.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: cluster 2023-12-08T22:48:35.301257+0000 mon.smithi040 (mon.0) 513 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2023-12-08T22:48:36.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:35.301799+0000 mon.smithi040 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:35.302084+0000 mon.smithi040 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:36.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:35.302775+0000 mon.smithi040 (mon.0) 516 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:35.308477+0000 mon.smithi040 (mon.0) 517 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: cluster 2023-12-08T22:48:36.301247+0000 mon.smithi040 (mon.0) 518 : cluster [INF] osd.3 [v2:172.21.15.40:6810/1885302084,v1:172.21.15.40:6811/1885302084] boot 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: cluster 2023-12-08T22:48:36.301277+0000 mon.smithi040 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:36.301542+0000 mon.smithi040 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:36.301880+0000 mon.smithi040 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:36 smithi040 bash[24841]: audit 2023-12-08T22:48:36.302161+0000 mon.smithi040 (mon.0) 522 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: cluster 2023-12-08T22:48:34.952888+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: cluster 2023-12-08T22:48:34.952964+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: cluster 2023-12-08T22:48:36.218237+0000 mgr.smithi040.evuiyl (mgr.14180) 120 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: cluster 2023-12-08T22:48:37.132015+0000 mon.smithi040 (mon.0) 523 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: audit 2023-12-08T22:48:37.132382+0000 mon.smithi040 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:37.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:37 smithi040 bash[24841]: audit 2023-12-08T22:48:37.132770+0000 mon.smithi040 (mon.0) 525 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: cluster 2023-12-08T22:48:34.952888+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: cluster 2023-12-08T22:48:34.952964+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: cluster 2023-12-08T22:48:36.218237+0000 mgr.smithi040.evuiyl (mgr.14180) 120 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-12-08T22:48:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: cluster 2023-12-08T22:48:37.132015+0000 mon.smithi040 (mon.0) 523 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2023-12-08T22:48:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: audit 2023-12-08T22:48:37.132382+0000 mon.smithi040 (mon.0) 524 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:37 smithi149 bash[28710]: audit 2023-12-08T22:48:37.132770+0000 mon.smithi040 (mon.0) 525 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:38.286 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:39.389 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":34,"num_osds":8,"num_up_osds":6,"osd_up_since":1702075716,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:39 smithi040 bash[24841]: cluster 2023-12-08T22:48:38.139634+0000 mon.smithi040 (mon.0) 526 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2023-12-08T22:48:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:39 smithi040 bash[24841]: audit 2023-12-08T22:48:38.139813+0000 mon.smithi040 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:39 smithi040 bash[24841]: audit 2023-12-08T22:48:38.140232+0000 mon.smithi040 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:39 smithi040 bash[24841]: cluster 2023-12-08T22:48:38.218541+0000 mgr.smithi040.evuiyl (mgr.14180) 121 : cluster [DBG] pgmap v101: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:39 smithi040 bash[24841]: audit 2023-12-08T22:48:38.283101+0000 mon.smithi040 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.40:0/4057937237' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:39 smithi149 bash[28710]: cluster 2023-12-08T22:48:38.139634+0000 mon.smithi040 (mon.0) 526 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2023-12-08T22:48:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:39 smithi149 bash[28710]: audit 2023-12-08T22:48:38.139813+0000 mon.smithi040 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:39 smithi149 bash[28710]: audit 2023-12-08T22:48:38.140232+0000 mon.smithi040 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:39 smithi149 bash[28710]: cluster 2023-12-08T22:48:38.218541+0000 mgr.smithi040.evuiyl (mgr.14180) 121 : cluster [DBG] pgmap v101: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:39 smithi149 bash[28710]: audit 2023-12-08T22:48:38.283101+0000 mon.smithi040 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.40:0/4057937237' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:40.390 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:41.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:40 smithi040 bash[24841]: audit 2023-12-08T22:48:39.649462+0000 mon.smithi040 (mon.0) 530 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:41.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:40 smithi040 bash[24841]: cluster 2023-12-08T22:48:40.219033+0000 mgr.smithi040.evuiyl (mgr.14180) 122 : cluster [DBG] pgmap v102: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:41.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:40 smithi149 bash[28710]: audit 2023-12-08T22:48:39.649462+0000 mon.smithi040 (mon.0) 530 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:41.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:40 smithi149 bash[28710]: cluster 2023-12-08T22:48:40.219033+0000 mgr.smithi040.evuiyl (mgr.14180) 122 : cluster [DBG] pgmap v102: 1 pgs: 1 remapped+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:42.063 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:41 smithi040 bash[24841]: audit 2023-12-08T22:48:41.617075+0000 mon.smithi040 (mon.0) 531 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-12-08T22:48:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:41 smithi149 bash[28710]: audit 2023-12-08T22:48:41.617075+0000 mon.smithi040 (mon.0) 531 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: audit 2023-12-08T22:48:41.663757+0000 mon.smithi040 (mon.0) 532 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: cluster 2023-12-08T22:48:41.663875+0000 mon.smithi040 (mon.0) 533 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: audit 2023-12-08T22:48:41.664220+0000 mon.smithi040 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: audit 2023-12-08T22:48:41.665066+0000 mon.smithi040 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: audit 2023-12-08T22:48:41.666346+0000 mon.smithi040 (mon.0) 536 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:42.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:42 smithi040 bash[24841]: cluster 2023-12-08T22:48:42.219616+0000 mgr.smithi040.evuiyl (mgr.14180) 123 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: audit 2023-12-08T22:48:41.663757+0000 mon.smithi040 (mon.0) 532 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-12-08T22:48:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: cluster 2023-12-08T22:48:41.663875+0000 mon.smithi040 (mon.0) 533 : cluster [DBG] osdmap e35: 8 total, 6 up, 8 in 2023-12-08T22:48:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: audit 2023-12-08T22:48:41.664220+0000 mon.smithi040 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: audit 2023-12-08T22:48:41.665066+0000 mon.smithi040 (mon.0) 535 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: audit 2023-12-08T22:48:41.666346+0000 mon.smithi040 (mon.0) 536 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:43.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:42 smithi149 bash[28710]: cluster 2023-12-08T22:48:42.219616+0000 mgr.smithi040.evuiyl (mgr.14180) 123 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:44.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:43 smithi040 bash[24841]: audit 2023-12-08T22:48:42.665955+0000 mon.smithi040 (mon.0) 537 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:44.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:43 smithi040 bash[24841]: cluster 2023-12-08T22:48:42.666017+0000 mon.smithi040 (mon.0) 538 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2023-12-08T22:48:44.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:43 smithi040 bash[24841]: audit 2023-12-08T22:48:42.666456+0000 mon.smithi040 (mon.0) 539 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:44.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:43 smithi040 bash[24841]: audit 2023-12-08T22:48:42.666906+0000 mon.smithi040 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:44.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:43 smithi040 bash[24841]: audit 2023-12-08T22:48:42.673528+0000 mon.smithi040 (mon.0) 541 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:44.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:43 smithi149 bash[28710]: audit 2023-12-08T22:48:42.665955+0000 mon.smithi040 (mon.0) 537 : audit [INF] from='osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:44.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:43 smithi149 bash[28710]: cluster 2023-12-08T22:48:42.666017+0000 mon.smithi040 (mon.0) 538 : cluster [DBG] osdmap e36: 8 total, 6 up, 8 in 2023-12-08T22:48:44.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:43 smithi149 bash[28710]: audit 2023-12-08T22:48:42.666456+0000 mon.smithi040 (mon.0) 539 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:44.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:43 smithi149 bash[28710]: audit 2023-12-08T22:48:42.666906+0000 mon.smithi040 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:44.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:43 smithi149 bash[28710]: audit 2023-12-08T22:48:42.673528+0000 mon.smithi040 (mon.0) 541 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:44.808 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: cluster 2023-12-08T22:48:42.605861+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:44.808 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: cluster 2023-12-08T22:48:42.605937+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:44.808 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: cluster 2023-12-08T22:48:43.676221+0000 mon.smithi040 (mon.0) 542 : cluster [INF] osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431] boot 2023-12-08T22:48:44.809 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: cluster 2023-12-08T22:48:43.676321+0000 mon.smithi040 (mon.0) 543 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2023-12-08T22:48:44.809 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: audit 2023-12-08T22:48:43.677061+0000 mon.smithi040 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:44.809 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: audit 2023-12-08T22:48:43.677755+0000 mon.smithi040 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:44.809 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:44 smithi040 bash[24841]: cluster 2023-12-08T22:48:44.220294+0000 mgr.smithi040.evuiyl (mgr.14180) 124 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:44.924 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: cluster 2023-12-08T22:48:42.605861+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: cluster 2023-12-08T22:48:42.605937+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: cluster 2023-12-08T22:48:43.676221+0000 mon.smithi040 (mon.0) 542 : cluster [INF] osd.5 [v2:172.21.15.40:6818/1817957431,v1:172.21.15.40:6819/1817957431] boot 2023-12-08T22:48:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: cluster 2023-12-08T22:48:43.676321+0000 mon.smithi040 (mon.0) 543 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2023-12-08T22:48:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: audit 2023-12-08T22:48:43.677061+0000 mon.smithi040 (mon.0) 544 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-12-08T22:48:45.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: audit 2023-12-08T22:48:43.677755+0000 mon.smithi040 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:45.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:44 smithi149 bash[28710]: cluster 2023-12-08T22:48:44.220294+0000 mgr.smithi040.evuiyl (mgr.14180) 124 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2023-12-08T22:48:45.673 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1702075723,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:46.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:45 smithi040 bash[24841]: cluster 2023-12-08T22:48:44.691073+0000 mon.smithi040 (mon.0) 546 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2023-12-08T22:48:46.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:45 smithi040 bash[24841]: audit 2023-12-08T22:48:44.691321+0000 mon.smithi040 (mon.0) 547 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:46.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:45 smithi040 bash[24841]: audit 2023-12-08T22:48:44.920882+0000 mon.smithi040 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.40:0/1071465743' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:45 smithi149 bash[28710]: cluster 2023-12-08T22:48:44.691073+0000 mon.smithi040 (mon.0) 546 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2023-12-08T22:48:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:45 smithi149 bash[28710]: audit 2023-12-08T22:48:44.691321+0000 mon.smithi040 (mon.0) 547 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:45 smithi149 bash[28710]: audit 2023-12-08T22:48:44.920882+0000 mon.smithi040 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.40:0/1071465743' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:46.674 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd stat -f json 2023-12-08T22:48:47.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:46 smithi040 bash[24841]: cluster 2023-12-08T22:48:46.220908+0000 mgr.smithi040.evuiyl (mgr.14180) 125 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:47.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:46 smithi149 bash[28710]: cluster 2023-12-08T22:48:46.220908+0000 mgr.smithi040.evuiyl (mgr.14180) 125 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:48.425 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:48 smithi040 bash[24841]: audit 2023-12-08T22:48:47.799197+0000 mon.smithi040 (mon.0) 549 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-12-08T22:48:48.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:48 smithi149 bash[28710]: audit 2023-12-08T22:48:47.799197+0000 mon.smithi040 (mon.0) 549 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-12-08T22:48:49.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:49 smithi040 bash[24841]: audit 2023-12-08T22:48:48.146195+0000 mon.smithi040 (mon.0) 550 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-12-08T22:48:49.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:49 smithi040 bash[24841]: cluster 2023-12-08T22:48:48.146261+0000 mon.smithi040 (mon.0) 551 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2023-12-08T22:48:49.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:49 smithi040 bash[24841]: audit 2023-12-08T22:48:48.146421+0000 mon.smithi040 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:49.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:49 smithi040 bash[24841]: audit 2023-12-08T22:48:48.147033+0000 mon.smithi040 (mon.0) 553 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:49.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:49 smithi040 bash[24841]: cluster 2023-12-08T22:48:48.221501+0000 mgr.smithi040.evuiyl (mgr.14180) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:49 smithi149 bash[28710]: audit 2023-12-08T22:48:48.146195+0000 mon.smithi040 (mon.0) 550 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-12-08T22:48:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:49 smithi149 bash[28710]: cluster 2023-12-08T22:48:48.146261+0000 mon.smithi040 (mon.0) 551 : cluster [DBG] osdmap e39: 8 total, 7 up, 8 in 2023-12-08T22:48:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:49 smithi149 bash[28710]: audit 2023-12-08T22:48:48.146421+0000 mon.smithi040 (mon.0) 552 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:49 smithi149 bash[28710]: audit 2023-12-08T22:48:48.147033+0000 mon.smithi040 (mon.0) 553 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]: dispatch 2023-12-08T22:48:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:49 smithi149 bash[28710]: cluster 2023-12-08T22:48:48.221501+0000 mgr.smithi040.evuiyl (mgr.14180) 126 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:50 smithi040 bash[24841]: audit 2023-12-08T22:48:49.149628+0000 mon.smithi040 (mon.0) 554 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:50 smithi040 bash[24841]: cluster 2023-12-08T22:48:49.149767+0000 mon.smithi040 (mon.0) 555 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2023-12-08T22:48:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:50 smithi040 bash[24841]: audit 2023-12-08T22:48:49.150419+0000 mon.smithi040 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:50 smithi040 bash[24841]: audit 2023-12-08T22:48:49.157796+0000 mon.smithi040 (mon.0) 557 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:50 smithi149 bash[28710]: audit 2023-12-08T22:48:49.149628+0000 mon.smithi040 (mon.0) 554 : audit [INF] from='osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi040", "root=default"]}]': finished 2023-12-08T22:48:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:50 smithi149 bash[28710]: cluster 2023-12-08T22:48:49.149767+0000 mon.smithi040 (mon.0) 555 : cluster [DBG] osdmap e40: 8 total, 7 up, 8 in 2023-12-08T22:48:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:50 smithi149 bash[28710]: audit 2023-12-08T22:48:49.150419+0000 mon.smithi040 (mon.0) 556 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:50.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:50 smithi149 bash[28710]: audit 2023-12-08T22:48:49.157796+0000 mon.smithi040 (mon.0) 557 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: cluster 2023-12-08T22:48:48.806091+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: cluster 2023-12-08T22:48:48.806185+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: cluster 2023-12-08T22:48:50.159744+0000 mon.smithi040 (mon.0) 558 : cluster [INF] osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432] boot 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: cluster 2023-12-08T22:48:50.159814+0000 mon.smithi040 (mon.0) 559 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: audit 2023-12-08T22:48:50.160579+0000 mon.smithi040 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:51.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:51 smithi040 bash[24841]: cluster 2023-12-08T22:48:50.222092+0000 mgr.smithi040.evuiyl (mgr.14180) 127 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: cluster 2023-12-08T22:48:48.806091+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2023-12-08T22:48:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: cluster 2023-12-08T22:48:48.806185+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-12-08T22:48:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: cluster 2023-12-08T22:48:50.159744+0000 mon.smithi040 (mon.0) 558 : cluster [INF] osd.7 [v2:172.21.15.40:6826/797501432,v1:172.21.15.40:6827/797501432] boot 2023-12-08T22:48:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: cluster 2023-12-08T22:48:50.159814+0000 mon.smithi040 (mon.0) 559 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-12-08T22:48:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: audit 2023-12-08T22:48:50.160579+0000 mon.smithi040 (mon.0) 560 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-12-08T22:48:51.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:51 smithi149 bash[28710]: cluster 2023-12-08T22:48:50.222092+0000 mgr.smithi040.evuiyl (mgr.14180) 127 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-12-08T22:48:51.728 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:48:52.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:52 smithi040 bash[24841]: cluster 2023-12-08T22:48:51.172012+0000 mon.smithi040 (mon.0) 561 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-12-08T22:48:52.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:52 smithi040 bash[24841]: audit 2023-12-08T22:48:51.725680+0000 mon.smithi040 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.40:0/1199229881' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:52.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:52 smithi149 bash[28710]: cluster 2023-12-08T22:48:51.172012+0000 mon.smithi040 (mon.0) 561 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-12-08T22:48:52.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:52 smithi149 bash[28710]: audit 2023-12-08T22:48:51.725680+0000 mon.smithi040 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.40:0/1199229881' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-12-08T22:48:52.741 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":42,"num_osds":8,"num_up_osds":8,"osd_up_since":1702075730,"num_in_osds":8,"osd_in_since":1702075673,"num_remapped_pgs":0} 2023-12-08T22:48:52.741 INFO:tasks.cephadm:Setting up client nodes... 2023-12-08T22:48:52.741 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-12-08T22:48:53.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:53 smithi040 bash[24841]: cluster 2023-12-08T22:48:52.178698+0000 mon.smithi040 (mon.0) 563 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-12-08T22:48:53.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:53 smithi040 bash[24841]: cluster 2023-12-08T22:48:52.222718+0000 mgr.smithi040.evuiyl (mgr.14180) 128 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:53.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:53 smithi149 bash[28710]: cluster 2023-12-08T22:48:52.178698+0000 mon.smithi040 (mon.0) 563 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-12-08T22:48:53.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:53 smithi149 bash[28710]: cluster 2023-12-08T22:48:52.222718+0000 mgr.smithi040.evuiyl (mgr.14180) 128 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:54.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:54 smithi040 bash[24841]: audit 2023-12-08T22:48:53.528661+0000 mon.smithi040 (mon.0) 564 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:54.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:54 smithi040 bash[24841]: audit 2023-12-08T22:48:53.533809+0000 mon.smithi040 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:48:54.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:54 smithi040 bash[24841]: cluster 2023-12-08T22:48:54.223252+0000 mgr.smithi040.evuiyl (mgr.14180) 129 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:54 smithi149 bash[28710]: audit 2023-12-08T22:48:53.528661+0000 mon.smithi040 (mon.0) 564 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:54 smithi149 bash[28710]: audit 2023-12-08T22:48:53.533809+0000 mon.smithi040 (mon.0) 565 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:48:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:54 smithi149 bash[28710]: cluster 2023-12-08T22:48:54.223252+0000 mgr.smithi040.evuiyl (mgr.14180) 129 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:56.193 INFO:teuthology.orchestra.run.smithi040.stdout:[client.0] 2023-12-08T22:48:56.193 INFO:teuthology.orchestra.run.smithi040.stdout: key = AQBYnXNlIHwMCxAAO8dMD1HkNBd+CbZTw/kWaA== 2023-12-08T22:48:56.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:56 smithi040 bash[24841]: audit 2023-12-08T22:48:56.185022+0000 mon.smithi040 (mon.0) 566 : audit [INF] from='client.? 172.21.15.40:0/473401236' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:48:56.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:56 smithi040 bash[24841]: audit 2023-12-08T22:48:56.190093+0000 mon.smithi040 (mon.0) 567 : audit [INF] from='client.? 172.21.15.40:0/473401236' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-08T22:48:56.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:56 smithi149 bash[28710]: audit 2023-12-08T22:48:56.185022+0000 mon.smithi040 (mon.0) 566 : audit [INF] from='client.? 172.21.15.40:0/473401236' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:48:56.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:56 smithi149 bash[28710]: audit 2023-12-08T22:48:56.190093+0000 mon.smithi040 (mon.0) 567 : audit [INF] from='client.? 172.21.15.40:0/473401236' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-08T22:48:57.005 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T22:48:57.005 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2023-12-08T22:48:57.005 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2023-12-08T22:48:57.030 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-12-08T22:48:57.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:57 smithi040 bash[24841]: cluster 2023-12-08T22:48:56.223711+0000 mgr.smithi040.evuiyl (mgr.14180) 130 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:57.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:57 smithi149 bash[28710]: cluster 2023-12-08T22:48:56.223711+0000 mgr.smithi040.evuiyl (mgr.14180) 130 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:59.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:59 smithi149 bash[28710]: cluster 2023-12-08T22:48:58.224369+0000 mgr.smithi040.evuiyl (mgr.14180) 131 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:59.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:48:59 smithi149 bash[28710]: audit 2023-12-08T22:48:58.892614+0000 mon.smithi040 (mon.0) 568 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:48:59.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:59 smithi040 bash[24841]: cluster 2023-12-08T22:48:58.224369+0000 mgr.smithi040.evuiyl (mgr.14180) 131 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:48:59.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:48:59 smithi040 bash[24841]: audit 2023-12-08T22:48:58.892614+0000 mon.smithi040 (mon.0) 568 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:00.279 INFO:teuthology.orchestra.run.smithi149.stdout:[client.1] 2023-12-08T22:49:00.280 INFO:teuthology.orchestra.run.smithi149.stdout: key = AQBcnXNluRQMEBAA8Q3V5QTq157gmIC8NzPpmg== 2023-12-08T22:49:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:00 smithi149 bash[28710]: audit 2023-12-08T22:48:59.576096+0000 mon.smithi040 (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:00 smithi149 bash[28710]: cluster 2023-12-08T22:49:00.225136+0000 mgr.smithi040.evuiyl (mgr.14180) 132 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:00 smithi149 bash[28710]: audit 2023-12-08T22:49:00.267019+0000 mon.smithi149 (mon.1) 20 : audit [INF] from='client.? 172.21.15.149:0/3973303382' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:49:00.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:00 smithi149 bash[28710]: audit 2023-12-08T22:49:00.268751+0000 mon.smithi040 (mon.0) 570 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:49:00.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:00 smithi149 bash[28710]: audit 2023-12-08T22:49:00.276334+0000 mon.smithi040 (mon.0) 571 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-08T22:49:00.989 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T22:49:00.989 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2023-12-08T22:49:00.990 DEBUG:teuthology.orchestra.run.smithi149:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2023-12-08T22:49:01.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:00 smithi040 bash[24841]: audit 2023-12-08T22:48:59.576096+0000 mon.smithi040 (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:01.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:00 smithi040 bash[24841]: cluster 2023-12-08T22:49:00.225136+0000 mgr.smithi040.evuiyl (mgr.14180) 132 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:01.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:00 smithi040 bash[24841]: audit 2023-12-08T22:49:00.267019+0000 mon.smithi149 (mon.1) 20 : audit [INF] from='client.? 172.21.15.149:0/3973303382' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:49:01.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:00 smithi040 bash[24841]: audit 2023-12-08T22:49:00.268751+0000 mon.smithi040 (mon.0) 570 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-12-08T22:49:01.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:00 smithi040 bash[24841]: audit 2023-12-08T22:49:00.276334+0000 mon.smithi040 (mon.0) 571 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-12-08T22:49:01.011 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd dump --format=json 2023-12-08T22:49:03.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:03 smithi040 bash[24841]: cluster 2023-12-08T22:49:02.225893+0000 mgr.smithi040.evuiyl (mgr.14180) 133 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:03.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:03 smithi149 bash[28710]: cluster 2023-12-08T22:49:02.225893+0000 mgr.smithi040.evuiyl (mgr.14180) 133 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:05.391 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:05.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:05 smithi149 bash[28710]: cluster 2023-12-08T22:49:04.226665+0000 mgr.smithi040.evuiyl (mgr.14180) 134 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:05.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:05 smithi040 bash[24841]: cluster 2023-12-08T22:49:04.226665+0000 mgr.smithi040.evuiyl (mgr.14180) 134 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:07 smithi149 bash[28710]: cluster 2023-12-08T22:49:06.227177+0000 mgr.smithi040.evuiyl (mgr.14180) 135 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:07.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:07 smithi040 bash[24841]: cluster 2023-12-08T22:49:06.227177+0000 mgr.smithi040.evuiyl (mgr.14180) 135 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:09.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: cluster 2023-12-08T22:49:08.227844+0000 mgr.smithi040.evuiyl (mgr.14180) 136 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:09.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:08.751856+0000 mon.smithi040 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:09.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:09.045695+0000 mon.smithi040 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:09.047188+0000 mon.smithi040 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:09.048451+0000 mon.smithi040 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:09.049590+0000 mon.smithi040 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:09 smithi149 bash[28710]: audit 2023-12-08T22:49:09.058857+0000 mon.smithi040 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:09.708 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:49:09.708 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":43,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","created":"2023-12-08T22:43:50.372465+0000","modified":"2023-12-08T22:48:52.169454+0000","last_up_change":"2023-12-08T22:48:50.151806+0000","last_in_change":"2023-12-08T22:47:53.640414+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-08T22:48:28.708774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"6966b8cb-4c9c-4485-a92f-38ca54e69b9c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6800","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6801","nonce":3853880196}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6803","nonce":3853880196}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6807","nonce":3853880196}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6805","nonce":3853880196}]},"public_addr":"172.21.15.149:6801/3853880196","cluster_addr":"172.21.15.149:6803/3853880196","heartbeat_back_addr":"172.21.15.149:6807/3853880196","heartbeat_front_addr":"172.21.15.149:6805/3853880196","state":["exists","up"]},{"osd":1,"uuid":"60baac98-d61c-4d21-9b9f-b696de0f1681","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6802","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6803","nonce":2442512883}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6804","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6805","nonce":2442512883}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6808","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6809","nonce":2442512883}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6806","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6807","nonce":2442512883}]},"public_addr":"172.21.15.40:6803/2442512883","cluster_addr":"172.21.15.40:6805/2442512883","heartbeat_back_addr":"172.21.15.40:6809/2442512883","heartbeat_front_addr":"172.21.15.40:6807/2442512883","state":["exists","up"]},{"osd":2,"uuid":"55b7109f-a629-4a9f-843d-cf4f4a7c6a95","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6809","nonce":1750637873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6811","nonce":1750637873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6815","nonce":1750637873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6813","nonce":1750637873}]},"public_addr":"172.21.15.149:6809/1750637873","cluster_addr":"172.21.15.149:6811/1750637873","heartbeat_back_addr":"172.21.15.149:6815/1750637873","heartbeat_front_addr":"172.21.15.149:6813/1750637873","state":["exists","up"]},{"osd":3,"uuid":"b8916f69-5926-4017-99f7-639dc7157fec","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6810","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6811","nonce":1885302084}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6812","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6813","nonce":1885302084}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6816","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6817","nonce":1885302084}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6814","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6815","nonce":1885302084}]},"public_addr":"172.21.15.40:6811/1885302084","cluster_addr":"172.21.15.40:6813/1885302084","heartbeat_back_addr":"172.21.15.40:6817/1885302084","heartbeat_front_addr":"172.21.15.40:6815/1885302084","state":["exists","up"]},{"osd":4,"uuid":"62eab50a-7042-4811-8c3d-c0f19fd94a6f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6817","nonce":776718408}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6819","nonce":776718408}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6823","nonce":776718408}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6821","nonce":776718408}]},"public_addr":"172.21.15.149:6817/776718408","cluster_addr":"172.21.15.149:6819/776718408","heartbeat_back_addr":"172.21.15.149:6823/776718408","heartbeat_front_addr":"172.21.15.149:6821/776718408","state":["exists","up"]},{"osd":5,"uuid":"0440e2e2-443f-40d2-9fe1-c7f24fd888b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6818","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6819","nonce":1817957431}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6820","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6821","nonce":1817957431}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6824","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6825","nonce":1817957431}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6822","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6823","nonce":1817957431}]},"public_addr":"172.21.15.40:6819/1817957431","cluster_addr":"172.21.15.40:6821/1817957431","heartbeat_back_addr":"172.21.15.40:6825/1817957431","heartbeat_front_addr":"172.21.15.40:6823/1817957431","state":["exists","up"]},{"osd":6,"uuid":"cfc204e8-f698-4c88-8f90-b51cbab447d5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6825","nonce":152265462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6827","nonce":152265462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6831","nonce":152265462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6829","nonce":152265462}]},"public_addr":"172.21.15.149:6825/152265462","cluster_addr":"172.21.15.149:6827/152265462","heartbeat_back_addr":"172.21.15.149:6831/152265462","heartbeat_front_addr":"172.21.15.149:6829/152265462","state":["exists","up"]},{"osd":7,"uuid":"ff0be505-e0e5-4da6-9e65-88a38b50f7c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6826","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6827","nonce":797501432}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6828","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6829","nonce":797501432}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6832","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6833","nonce":797501432}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6830","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6831","nonce":797501432}]},"public_addr":"172.21.15.40:6827/797501432","cluster_addr":"172.21.15.40:6829/797501432","heartbeat_back_addr":"172.21.15.40:6833/797501432","heartbeat_front_addr":"172.21.15.40:6831/797501432","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:15.473027+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:28.193116+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:21.167727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:34.952968+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:27.198960+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:42.605940+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:31.702790+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:48.806193+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.40:6801/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/1609839494":"2023-12-09T22:46:02.176220+0000","172.21.15.40:6801/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:6800/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/1346511137":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/936415800":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2606364471":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2975796081":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6801/857956035":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/2752289154":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/857956035":"2023-12-09T22:44:18.664843+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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}} 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: cluster 2023-12-08T22:49:08.227844+0000 mgr.smithi040.evuiyl (mgr.14180) 136 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:08.751856+0000 mon.smithi040 (mon.0) 572 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:09.045695+0000 mon.smithi040 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:09.047188+0000 mon.smithi040 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:09.048451+0000 mon.smithi040 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:09.049590+0000 mon.smithi040 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:09.753 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:09 smithi040 bash[24841]: audit 2023-12-08T22:49:09.058857+0000 mon.smithi040 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:10.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:10 smithi040 bash[24841]: cephadm 2023-12-08T22:49:08.740865+0000 mgr.smithi040.evuiyl (mgr.14180) 137 : cephadm [INF] Detected new or changed devices on smithi149 2023-12-08T22:49:10.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:10 smithi040 bash[24841]: cephadm 2023-12-08T22:49:09.050528+0000 mgr.smithi040.evuiyl (mgr.14180) 138 : cephadm [INF] Adjusting osd_memory_target on smithi149 to 1210M 2023-12-08T22:49:10.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:10 smithi040 bash[24841]: audit 2023-12-08T22:49:09.704208+0000 mon.smithi040 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.40:0/1166018670' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:10.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:10 smithi149 bash[28710]: cephadm 2023-12-08T22:49:08.740865+0000 mgr.smithi040.evuiyl (mgr.14180) 137 : cephadm [INF] Detected new or changed devices on smithi149 2023-12-08T22:49:10.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:10 smithi149 bash[28710]: cephadm 2023-12-08T22:49:09.050528+0000 mgr.smithi040.evuiyl (mgr.14180) 138 : cephadm [INF] Adjusting osd_memory_target on smithi149 to 1210M 2023-12-08T22:49:10.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:10 smithi149 bash[28710]: audit 2023-12-08T22:49:09.704208+0000 mon.smithi040 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.40:0/1166018670' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:10.579 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2023-12-08T22:48:28.708774+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '27', '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_devicehealth': {}}}] 2023-12-08T22:49:10.579 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2023-12-08T22:49:11.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:11 smithi149 bash[28710]: cluster 2023-12-08T22:49:10.228484+0000 mgr.smithi040.evuiyl (mgr.14180) 139 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:11.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:11 smithi149 bash[28710]: audit 2023-12-08T22:49:11.268978+0000 mon.smithi040 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:11.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:11 smithi040 bash[24841]: cluster 2023-12-08T22:49:10.228484+0000 mgr.smithi040.evuiyl (mgr.14180) 139 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:11.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:11 smithi040 bash[24841]: audit 2023-12-08T22:49:11.268978+0000 mon.smithi040 (mon.0) 579 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: cephadm 2023-12-08T22:49:11.261616+0000 mgr.smithi040.evuiyl (mgr.14180) 140 : cephadm [INF] Detected new or changed devices on smithi040 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.570384+0000 mon.smithi040 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.571928+0000 mon.smithi040 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.573439+0000 mon.smithi040 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.574905+0000 mon.smithi040 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.583484+0000 mon.smithi040 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.585225+0000 mon.smithi040 (mon.0) 585 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.586383+0000 mon.smithi040 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.592686+0000 mon.smithi040 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.600110+0000 mon.smithi040 (mon.0) 588 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.606461+0000 mon.smithi040 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:49:12.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.608859+0000 mon.smithi040 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:49:12.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.609201+0000 mon.smithi040 (mon.0) 591 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:12.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:12 smithi149 bash[28710]: audit 2023-12-08T22:49:11.610042+0000 mon.smithi040 (mon.0) 592 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:12.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: cephadm 2023-12-08T22:49:11.261616+0000 mgr.smithi040.evuiyl (mgr.14180) 140 : cephadm [INF] Detected new or changed devices on smithi040 2023-12-08T22:49:12.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.570384+0000 mon.smithi040 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.571928+0000 mon.smithi040 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.573439+0000 mon.smithi040 (mon.0) 582 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.574905+0000 mon.smithi040 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.583484+0000 mon.smithi040 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.585225+0000 mon.smithi040 (mon.0) 585 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.586383+0000 mon.smithi040 (mon.0) 586 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.592686+0000 mon.smithi040 (mon.0) 587 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.600110+0000 mon.smithi040 (mon.0) 588 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.606461+0000 mon.smithi040 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.608859+0000 mon.smithi040 (mon.0) 590 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.609201+0000 mon.smithi040 (mon.0) 591 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:12 smithi040 bash[24841]: audit 2023-12-08T22:49:11.610042+0000 mon.smithi040 (mon.0) 592 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:49:13.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:13 smithi149 bash[28710]: cephadm 2023-12-08T22:49:11.576025+0000 mgr.smithi040.evuiyl (mgr.14180) 141 : cephadm [INF] Adjusting osd_memory_target on smithi040 to 3261M 2023-12-08T22:49:13.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:13 smithi149 bash[28710]: cluster 2023-12-08T22:49:12.229130+0000 mgr.smithi040.evuiyl (mgr.14180) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:13.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:13 smithi040 bash[24841]: cephadm 2023-12-08T22:49:11.576025+0000 mgr.smithi040.evuiyl (mgr.14180) 141 : cephadm [INF] Adjusting osd_memory_target on smithi040 to 3261M 2023-12-08T22:49:13.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:13 smithi040 bash[24841]: cluster 2023-12-08T22:49:12.229130+0000 mgr.smithi040.evuiyl (mgr.14180) 142 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:15.366 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:15.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:15 smithi040 bash[24841]: cluster 2023-12-08T22:49:14.229740+0000 mgr.smithi040.evuiyl (mgr.14180) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:15 smithi149 bash[28710]: cluster 2023-12-08T22:49:14.229740+0000 mgr.smithi040.evuiyl (mgr.14180) 143 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:17.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:17 smithi040 bash[24841]: cluster 2023-12-08T22:49:16.230287+0000 mgr.smithi040.evuiyl (mgr.14180) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:17 smithi149 bash[28710]: cluster 2023-12-08T22:49:16.230287+0000 mgr.smithi040.evuiyl (mgr.14180) 144 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:19.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:19 smithi040 bash[24841]: cluster 2023-12-08T22:49:18.231011+0000 mgr.smithi040.evuiyl (mgr.14180) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:19.593 INFO:teuthology.orchestra.run.smithi040.stdout:pg_num: 1 2023-12-08T22:49:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:19 smithi149 bash[28710]: cluster 2023-12-08T22:49:18.231011+0000 mgr.smithi040.evuiyl (mgr.14180) 145 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:20.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:20 smithi040 bash[24841]: audit 2023-12-08T22:49:19.590796+0000 mon.smithi040 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.40:0/414584156' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-12-08T22:49:20.715 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2023-12-08T22:49:20.715 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2023-12-08T22:49:20.716 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph mgr dump --format=json 2023-12-08T22:49:20.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:20 smithi149 bash[28710]: audit 2023-12-08T22:49:19.590796+0000 mon.smithi040 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.40:0/414584156' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-12-08T22:49:21.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:21 smithi149 bash[28710]: cluster 2023-12-08T22:49:20.231674+0000 mgr.smithi040.evuiyl (mgr.14180) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:21.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:21 smithi040 bash[24841]: cluster 2023-12-08T22:49:20.231674+0000 mgr.smithi040.evuiyl (mgr.14180) 146 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:23.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:23 smithi040 bash[24841]: cluster 2023-12-08T22:49:22.232285+0000 mgr.smithi040.evuiyl (mgr.14180) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:23.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:23 smithi149 bash[28710]: cluster 2023-12-08T22:49:22.232285+0000 mgr.smithi040.evuiyl (mgr.14180) 147 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:25.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:25 smithi149 bash[28710]: cluster 2023-12-08T22:49:24.232905+0000 mgr.smithi040.evuiyl (mgr.14180) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:25.693 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:25.720 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:25 smithi040 bash[24841]: cluster 2023-12-08T22:49:24.232905+0000 mgr.smithi040.evuiyl (mgr.14180) 148 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:27.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:27 smithi149 bash[28710]: cluster 2023-12-08T22:49:26.233474+0000 mgr.smithi040.evuiyl (mgr.14180) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:27.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:27 smithi040 bash[24841]: cluster 2023-12-08T22:49:26.233474+0000 mgr.smithi040.evuiyl (mgr.14180) 149 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:29.357 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:49:29.522 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:29 smithi040 bash[24841]: cluster 2023-12-08T22:49:28.233918+0000 mgr.smithi040.evuiyl (mgr.14180) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:29 smithi149 bash[28710]: cluster 2023-12-08T22:49:28.233918+0000 mgr.smithi040.evuiyl (mgr.14180) 150 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:30 smithi149 bash[28710]: audit 2023-12-08T22:49:29.349564+0000 mon.smithi040 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.40:0/4086819657' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-12-08T22:49:30.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:30 smithi040 bash[24841]: audit 2023-12-08T22:49:29.349564+0000 mon.smithi040 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.40:0/4086819657' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-12-08T22:49:31.021 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi040.evuiyl","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6800","nonce":1246006156},{"type":"v1","addr":"172.21.15.40:6801","nonce":1246006156}]},"active_addr":"172.21.15.40:6801/1246006156","active_change":"2023-12-08T22:46:02.176585+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14198,"name":"smithi149.uzeacz","mgr_features":4540138314316775423,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_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":[]},"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_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":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","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":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","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":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]}}},{"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":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","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","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_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":[]},"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_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":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","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":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"","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":"","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"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":[]}}},{"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":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"None","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.40:8443/","prometheus":"http://172.21.15.40:9283/"},"always_on_modules":{"nautilus":["balancer","crash","devicehealth","orchestrator_cli","progress","rbd_support","status","volumes"],"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"]},"last_failure_osd_epoch":4,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.40:0","nonce":1131242810}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.40:0","nonce":795928496}]}]} 2023-12-08T22:49:31.026 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2023-12-08T22:49:31.026 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2023-12-08T22:49:31.027 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd dump --format=json 2023-12-08T22:49:31.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:31 smithi149 bash[28710]: cluster 2023-12-08T22:49:30.234305+0000 mgr.smithi040.evuiyl (mgr.14180) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:31.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:31 smithi040 bash[24841]: cluster 2023-12-08T22:49:30.234305+0000 mgr.smithi040.evuiyl (mgr.14180) 151 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:33.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:33 smithi040 bash[24841]: cluster 2023-12-08T22:49:32.234692+0000 mgr.smithi040.evuiyl (mgr.14180) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:33 smithi149 bash[28710]: cluster 2023-12-08T22:49:32.234692+0000 mgr.smithi040.evuiyl (mgr.14180) 152 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:35 smithi149 bash[28710]: cluster 2023-12-08T22:49:34.235165+0000 mgr.smithi040.evuiyl (mgr.14180) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:35 smithi040 bash[24841]: cluster 2023-12-08T22:49:34.235165+0000 mgr.smithi040.evuiyl (mgr.14180) 153 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:36.253 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:37.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:37 smithi040 bash[24841]: cluster 2023-12-08T22:49:36.235786+0000 mgr.smithi040.evuiyl (mgr.14180) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:37.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:37 smithi149 bash[28710]: cluster 2023-12-08T22:49:36.235786+0000 mgr.smithi040.evuiyl (mgr.14180) 154 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:39.378 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:39 smithi040 bash[24841]: cluster 2023-12-08T22:49:38.236383+0000 mgr.smithi040.evuiyl (mgr.14180) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:39.378 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:39 smithi040 bash[24841]: audit 2023-12-08T22:49:38.711771+0000 mon.smithi040 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:39 smithi149 bash[28710]: cluster 2023-12-08T22:49:38.236383+0000 mgr.smithi040.evuiyl (mgr.14180) 155 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:39.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:39 smithi149 bash[28710]: audit 2023-12-08T22:49:38.711771+0000 mon.smithi040 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:40.683 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:49:40.683 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":43,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","created":"2023-12-08T22:43:50.372465+0000","modified":"2023-12-08T22:48:52.169454+0000","last_up_change":"2023-12-08T22:48:50.151806+0000","last_in_change":"2023-12-08T22:47:53.640414+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-08T22:48:28.708774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"6966b8cb-4c9c-4485-a92f-38ca54e69b9c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6800","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6801","nonce":3853880196}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6803","nonce":3853880196}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6807","nonce":3853880196}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6805","nonce":3853880196}]},"public_addr":"172.21.15.149:6801/3853880196","cluster_addr":"172.21.15.149:6803/3853880196","heartbeat_back_addr":"172.21.15.149:6807/3853880196","heartbeat_front_addr":"172.21.15.149:6805/3853880196","state":["exists","up"]},{"osd":1,"uuid":"60baac98-d61c-4d21-9b9f-b696de0f1681","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6802","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6803","nonce":2442512883}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6804","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6805","nonce":2442512883}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6808","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6809","nonce":2442512883}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6806","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6807","nonce":2442512883}]},"public_addr":"172.21.15.40:6803/2442512883","cluster_addr":"172.21.15.40:6805/2442512883","heartbeat_back_addr":"172.21.15.40:6809/2442512883","heartbeat_front_addr":"172.21.15.40:6807/2442512883","state":["exists","up"]},{"osd":2,"uuid":"55b7109f-a629-4a9f-843d-cf4f4a7c6a95","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6809","nonce":1750637873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6811","nonce":1750637873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6815","nonce":1750637873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6813","nonce":1750637873}]},"public_addr":"172.21.15.149:6809/1750637873","cluster_addr":"172.21.15.149:6811/1750637873","heartbeat_back_addr":"172.21.15.149:6815/1750637873","heartbeat_front_addr":"172.21.15.149:6813/1750637873","state":["exists","up"]},{"osd":3,"uuid":"b8916f69-5926-4017-99f7-639dc7157fec","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6810","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6811","nonce":1885302084}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6812","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6813","nonce":1885302084}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6816","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6817","nonce":1885302084}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6814","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6815","nonce":1885302084}]},"public_addr":"172.21.15.40:6811/1885302084","cluster_addr":"172.21.15.40:6813/1885302084","heartbeat_back_addr":"172.21.15.40:6817/1885302084","heartbeat_front_addr":"172.21.15.40:6815/1885302084","state":["exists","up"]},{"osd":4,"uuid":"62eab50a-7042-4811-8c3d-c0f19fd94a6f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6817","nonce":776718408}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6819","nonce":776718408}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6823","nonce":776718408}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6821","nonce":776718408}]},"public_addr":"172.21.15.149:6817/776718408","cluster_addr":"172.21.15.149:6819/776718408","heartbeat_back_addr":"172.21.15.149:6823/776718408","heartbeat_front_addr":"172.21.15.149:6821/776718408","state":["exists","up"]},{"osd":5,"uuid":"0440e2e2-443f-40d2-9fe1-c7f24fd888b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6818","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6819","nonce":1817957431}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6820","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6821","nonce":1817957431}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6824","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6825","nonce":1817957431}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6822","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6823","nonce":1817957431}]},"public_addr":"172.21.15.40:6819/1817957431","cluster_addr":"172.21.15.40:6821/1817957431","heartbeat_back_addr":"172.21.15.40:6825/1817957431","heartbeat_front_addr":"172.21.15.40:6823/1817957431","state":["exists","up"]},{"osd":6,"uuid":"cfc204e8-f698-4c88-8f90-b51cbab447d5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6825","nonce":152265462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6827","nonce":152265462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6831","nonce":152265462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6829","nonce":152265462}]},"public_addr":"172.21.15.149:6825/152265462","cluster_addr":"172.21.15.149:6827/152265462","heartbeat_back_addr":"172.21.15.149:6831/152265462","heartbeat_front_addr":"172.21.15.149:6829/152265462","state":["exists","up"]},{"osd":7,"uuid":"ff0be505-e0e5-4da6-9e65-88a38b50f7c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6826","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6827","nonce":797501432}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6828","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6829","nonce":797501432}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6832","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6833","nonce":797501432}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6830","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6831","nonce":797501432}]},"public_addr":"172.21.15.40:6827/797501432","cluster_addr":"172.21.15.40:6829/797501432","heartbeat_back_addr":"172.21.15.40:6833/797501432","heartbeat_front_addr":"172.21.15.40:6831/797501432","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:15.473027+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:28.193116+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:21.167727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:34.952968+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:27.198960+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:42.605940+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:31.702790+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:48.806193+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.40:6801/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/1609839494":"2023-12-09T22:46:02.176220+0000","172.21.15.40:6801/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:6800/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/1346511137":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/936415800":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2606364471":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2975796081":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6801/857956035":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/2752289154":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/857956035":"2023-12-09T22:44:18.664843+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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}} 2023-12-08T22:49:41.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:41 smithi040 bash[24841]: cluster 2023-12-08T22:49:40.237001+0000 mgr.smithi040.evuiyl (mgr.14180) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:41.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:41 smithi040 bash[24841]: audit 2023-12-08T22:49:40.679526+0000 mon.smithi040 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.40:0/2979649063' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:41 smithi149 bash[28710]: cluster 2023-12-08T22:49:40.237001+0000 mgr.smithi040.evuiyl (mgr.14180) 156 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:41.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:41 smithi149 bash[28710]: audit 2023-12-08T22:49:40.679526+0000 mon.smithi040 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.40:0/2979649063' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:41.941 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2023-12-08T22:49:41.941 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd dump --format=json 2023-12-08T22:49:43.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:43 smithi040 bash[24841]: cluster 2023-12-08T22:49:42.237583+0000 mgr.smithi040.evuiyl (mgr.14180) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:43.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:43 smithi149 bash[28710]: cluster 2023-12-08T22:49:42.237583+0000 mgr.smithi040.evuiyl (mgr.14180) 157 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:45.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:44 smithi040 bash[24841]: audit 2023-12-08T22:49:43.584475+0000 mon.smithi040 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:45.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:44 smithi040 bash[24841]: cluster 2023-12-08T22:49:44.238183+0000 mgr.smithi040.evuiyl (mgr.14180) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:44 smithi149 bash[28710]: audit 2023-12-08T22:49:43.584475+0000 mon.smithi040 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:49:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:44 smithi149 bash[28710]: cluster 2023-12-08T22:49:44.238183+0000 mgr.smithi040.evuiyl (mgr.14180) 158 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:47.111 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:47 smithi040 bash[24841]: cluster 2023-12-08T22:49:46.238818+0000 mgr.smithi040.evuiyl (mgr.14180) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:47.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:47 smithi149 bash[28710]: cluster 2023-12-08T22:49:46.238818+0000 mgr.smithi040.evuiyl (mgr.14180) 159 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:49 smithi149 bash[28710]: cluster 2023-12-08T22:49:48.239204+0000 mgr.smithi040.evuiyl (mgr.14180) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:49.577 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:49 smithi040 bash[24841]: cluster 2023-12-08T22:49:48.239204+0000 mgr.smithi040.evuiyl (mgr.14180) 160 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:49.986 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:49:49.987 INFO:teuthology.orchestra.run.smithi040.stdout:{"epoch":43,"fsid":"20a983fc-961b-11ee-95a3-87774f69a715","created":"2023-12-08T22:43:50.372465+0000","modified":"2023-12-08T22:48:52.169454+0000","last_up_change":"2023-12-08T22:48:50.151806+0000","last_in_change":"2023-12-08T22:47:53.640414+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2023-12-08T22:48:28.708774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"27","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"6966b8cb-4c9c-4485-a92f-38ca54e69b9c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6800","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6801","nonce":3853880196}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6802","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6803","nonce":3853880196}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6806","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6807","nonce":3853880196}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6804","nonce":3853880196},{"type":"v1","addr":"172.21.15.149:6805","nonce":3853880196}]},"public_addr":"172.21.15.149:6801/3853880196","cluster_addr":"172.21.15.149:6803/3853880196","heartbeat_back_addr":"172.21.15.149:6807/3853880196","heartbeat_front_addr":"172.21.15.149:6805/3853880196","state":["exists","up"]},{"osd":1,"uuid":"60baac98-d61c-4d21-9b9f-b696de0f1681","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6802","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6803","nonce":2442512883}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6804","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6805","nonce":2442512883}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6808","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6809","nonce":2442512883}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6806","nonce":2442512883},{"type":"v1","addr":"172.21.15.40:6807","nonce":2442512883}]},"public_addr":"172.21.15.40:6803/2442512883","cluster_addr":"172.21.15.40:6805/2442512883","heartbeat_back_addr":"172.21.15.40:6809/2442512883","heartbeat_front_addr":"172.21.15.40:6807/2442512883","state":["exists","up"]},{"osd":2,"uuid":"55b7109f-a629-4a9f-843d-cf4f4a7c6a95","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6808","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6809","nonce":1750637873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6810","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6811","nonce":1750637873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6814","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6815","nonce":1750637873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6812","nonce":1750637873},{"type":"v1","addr":"172.21.15.149:6813","nonce":1750637873}]},"public_addr":"172.21.15.149:6809/1750637873","cluster_addr":"172.21.15.149:6811/1750637873","heartbeat_back_addr":"172.21.15.149:6815/1750637873","heartbeat_front_addr":"172.21.15.149:6813/1750637873","state":["exists","up"]},{"osd":3,"uuid":"b8916f69-5926-4017-99f7-639dc7157fec","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6810","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6811","nonce":1885302084}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6812","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6813","nonce":1885302084}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6816","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6817","nonce":1885302084}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6814","nonce":1885302084},{"type":"v1","addr":"172.21.15.40:6815","nonce":1885302084}]},"public_addr":"172.21.15.40:6811/1885302084","cluster_addr":"172.21.15.40:6813/1885302084","heartbeat_back_addr":"172.21.15.40:6817/1885302084","heartbeat_front_addr":"172.21.15.40:6815/1885302084","state":["exists","up"]},{"osd":4,"uuid":"62eab50a-7042-4811-8c3d-c0f19fd94a6f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6816","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6817","nonce":776718408}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6818","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6819","nonce":776718408}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6822","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6823","nonce":776718408}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6820","nonce":776718408},{"type":"v1","addr":"172.21.15.149:6821","nonce":776718408}]},"public_addr":"172.21.15.149:6817/776718408","cluster_addr":"172.21.15.149:6819/776718408","heartbeat_back_addr":"172.21.15.149:6823/776718408","heartbeat_front_addr":"172.21.15.149:6821/776718408","state":["exists","up"]},{"osd":5,"uuid":"0440e2e2-443f-40d2-9fe1-c7f24fd888b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6818","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6819","nonce":1817957431}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6820","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6821","nonce":1817957431}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6824","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6825","nonce":1817957431}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6822","nonce":1817957431},{"type":"v1","addr":"172.21.15.40:6823","nonce":1817957431}]},"public_addr":"172.21.15.40:6819/1817957431","cluster_addr":"172.21.15.40:6821/1817957431","heartbeat_back_addr":"172.21.15.40:6825/1817957431","heartbeat_front_addr":"172.21.15.40:6823/1817957431","state":["exists","up"]},{"osd":6,"uuid":"cfc204e8-f698-4c88-8f90-b51cbab447d5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6824","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6825","nonce":152265462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6826","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6827","nonce":152265462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6830","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6831","nonce":152265462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.149:6828","nonce":152265462},{"type":"v1","addr":"172.21.15.149:6829","nonce":152265462}]},"public_addr":"172.21.15.149:6825/152265462","cluster_addr":"172.21.15.149:6827/152265462","heartbeat_back_addr":"172.21.15.149:6831/152265462","heartbeat_front_addr":"172.21.15.149:6829/152265462","state":["exists","up"]},{"osd":7,"uuid":"ff0be505-e0e5-4da6-9e65-88a38b50f7c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6826","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6827","nonce":797501432}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6828","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6829","nonce":797501432}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6832","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6833","nonce":797501432}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.40:6830","nonce":797501432},{"type":"v1","addr":"172.21.15.40:6831","nonce":797501432}]},"public_addr":"172.21.15.40:6827/797501432","cluster_addr":"172.21.15.40:6829/797501432","heartbeat_back_addr":"172.21.15.40:6833/797501432","heartbeat_front_addr":"172.21.15.40:6831/797501432","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:15.473027+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:28.193116+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:21.167727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:34.952968+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:27.198960+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:42.605940+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:31.702790+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2023-12-08T22:48:48.806193+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.40:6801/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/1609839494":"2023-12-09T22:46:02.176220+0000","172.21.15.40:6801/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:6800/3880829757":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/1346511137":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/936415800":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2606364471":"2023-12-09T22:44:59.873071+0000","172.21.15.40:0/2975796081":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6801/857956035":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/1451013851":"2023-12-09T22:46:02.176220+0000","172.21.15.40:0/2752289154":"2023-12-09T22:44:18.664843+0000","172.21.15.40:6800/857956035":"2023-12-09T22:44:18.664843+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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}} 2023-12-08T22:49:50.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:50 smithi040 bash[24841]: audit 2023-12-08T22:49:49.982030+0000 mon.smithi040 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.40:0/2921604949' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:50.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:50 smithi149 bash[28710]: audit 2023-12-08T22:49:49.982030+0000 mon.smithi040 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.40:0/2921604949' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-12-08T22:49:50.697 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2023-12-08T22:49:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:51 smithi149 bash[28710]: cluster 2023-12-08T22:49:50.239765+0000 mgr.smithi040.evuiyl (mgr.14180) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:51 smithi040 bash[24841]: cluster 2023-12-08T22:49:50.239765+0000 mgr.smithi040.evuiyl (mgr.14180) 161 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:53.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:53 smithi040 bash[24841]: cluster 2023-12-08T22:49:52.240497+0000 mgr.smithi040.evuiyl (mgr.14180) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:53.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:53 smithi149 bash[28710]: cluster 2023-12-08T22:49:52.240497+0000 mgr.smithi040.evuiyl (mgr.14180) 162 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:55.495 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:49:55.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:55 smithi149 bash[28710]: cluster 2023-12-08T22:49:54.241064+0000 mgr.smithi040.evuiyl (mgr.14180) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:55.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:55 smithi040 bash[24841]: cluster 2023-12-08T22:49:54.241064+0000 mgr.smithi040.evuiyl (mgr.14180) 163 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:57.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:57 smithi040 bash[24841]: cluster 2023-12-08T22:49:56.241649+0000 mgr.smithi040.evuiyl (mgr.14180) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:57.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:57 smithi149 bash[28710]: cluster 2023-12-08T22:49:56.241649+0000 mgr.smithi040.evuiyl (mgr.14180) 164 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:58.977 INFO:teuthology.orchestra.run.smithi040.stdout:68719476757 2023-12-08T22:49:58.977 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2023-12-08T22:49:59.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:49:59 smithi149 bash[28710]: cluster 2023-12-08T22:49:58.242298+0000 mgr.smithi040.evuiyl (mgr.14180) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:49:59.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:49:59 smithi040 bash[24841]: cluster 2023-12-08T22:49:58.242298+0000 mgr.smithi040.evuiyl (mgr.14180) 165 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:00.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:00 smithi040 bash[24841]: cluster 2023-12-08T22:50:00.000143+0000 mon.smithi040 (mon.0) 599 : cluster [INF] overall HEALTH_OK 2023-12-08T22:50:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:00 smithi149 bash[28710]: cluster 2023-12-08T22:50:00.000143+0000 mon.smithi040 (mon.0) 599 : cluster [INF] overall HEALTH_OK 2023-12-08T22:50:01.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:01 smithi149 bash[28710]: cluster 2023-12-08T22:50:00.242906+0000 mgr.smithi040.evuiyl (mgr.14180) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:01.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:01 smithi040 bash[24841]: cluster 2023-12-08T22:50:00.242906+0000 mgr.smithi040.evuiyl (mgr.14180) 166 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:03.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:03 smithi040 bash[24841]: cluster 2023-12-08T22:50:02.243417+0000 mgr.smithi040.evuiyl (mgr.14180) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:03.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:03 smithi149 bash[28710]: cluster 2023-12-08T22:50:02.243417+0000 mgr.smithi040.evuiyl (mgr.14180) 167 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:03.766 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:05.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:05 smithi149 bash[28710]: cluster 2023-12-08T22:50:04.244072+0000 mgr.smithi040.evuiyl (mgr.14180) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:05.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:05 smithi040 bash[24841]: cluster 2023-12-08T22:50:04.244072+0000 mgr.smithi040.evuiyl (mgr.14180) 168 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:07.281 INFO:teuthology.orchestra.run.smithi040.stdout:107374182423 2023-12-08T22:50:07.282 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2023-12-08T22:50:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:07 smithi149 bash[28710]: cluster 2023-12-08T22:50:06.244721+0000 mgr.smithi040.evuiyl (mgr.14180) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:07.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:07 smithi040 bash[24841]: cluster 2023-12-08T22:50:06.244721+0000 mgr.smithi040.evuiyl (mgr.14180) 169 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:09.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:09 smithi149 bash[28710]: cluster 2023-12-08T22:50:08.245319+0000 mgr.smithi040.evuiyl (mgr.14180) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:09.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:09 smithi040 bash[24841]: cluster 2023-12-08T22:50:08.245319+0000 mgr.smithi040.evuiyl (mgr.14180) 170 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:11.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:11 smithi149 bash[28710]: cluster 2023-12-08T22:50:10.245920+0000 mgr.smithi040.evuiyl (mgr.14180) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:11.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:11 smithi040 bash[24841]: cluster 2023-12-08T22:50:10.245920+0000 mgr.smithi040.evuiyl (mgr.14180) 171 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:12.070 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:13.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:13 smithi040 bash[24841]: cluster 2023-12-08T22:50:12.246577+0000 mgr.smithi040.evuiyl (mgr.14180) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:13.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:13 smithi149 bash[28710]: cluster 2023-12-08T22:50:12.246577+0000 mgr.smithi040.evuiyl (mgr.14180) 172 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:15.547 INFO:teuthology.orchestra.run.smithi040.stdout:85899345946 2023-12-08T22:50:15.547 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2023-12-08T22:50:15.561 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:15 smithi040 bash[24841]: cluster 2023-12-08T22:50:14.247192+0000 mgr.smithi040.evuiyl (mgr.14180) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:15 smithi149 bash[28710]: cluster 2023-12-08T22:50:14.247192+0000 mgr.smithi040.evuiyl (mgr.14180) 173 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:17.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:17 smithi149 bash[28710]: cluster 2023-12-08T22:50:16.247820+0000 mgr.smithi040.evuiyl (mgr.14180) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:17.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:17 smithi040 bash[24841]: cluster 2023-12-08T22:50:16.247820+0000 mgr.smithi040.evuiyl (mgr.14180) 174 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:19.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:19 smithi040 bash[24841]: cluster 2023-12-08T22:50:18.248425+0000 mgr.smithi040.evuiyl (mgr.14180) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:19 smithi149 bash[28710]: cluster 2023-12-08T22:50:18.248425+0000 mgr.smithi040.evuiyl (mgr.14180) 175 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:20.343 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:21.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:21 smithi040 bash[24841]: cluster 2023-12-08T22:50:20.248977+0000 mgr.smithi040.evuiyl (mgr.14180) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:21.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:21 smithi149 bash[28710]: cluster 2023-12-08T22:50:20.248977+0000 mgr.smithi040.evuiyl (mgr.14180) 176 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:23.260 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:23 smithi040 bash[24841]: cluster 2023-12-08T22:50:22.249572+0000 mgr.smithi040.evuiyl (mgr.14180) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:23.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:23 smithi149 bash[28710]: cluster 2023-12-08T22:50:22.249572+0000 mgr.smithi040.evuiyl (mgr.14180) 177 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:23.976 INFO:teuthology.orchestra.run.smithi040.stdout:137438953496 2023-12-08T22:50:24.019 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2023-12-08T22:50:25.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:25 smithi149 bash[28710]: cluster 2023-12-08T22:50:24.250106+0000 mgr.smithi040.evuiyl (mgr.14180) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:25.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:25 smithi040 bash[24841]: cluster 2023-12-08T22:50:24.250106+0000 mgr.smithi040.evuiyl (mgr.14180) 178 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:27.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:27 smithi040 bash[24841]: cluster 2023-12-08T22:50:26.250735+0000 mgr.smithi040.evuiyl (mgr.14180) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:27 smithi149 bash[28710]: cluster 2023-12-08T22:50:26.250735+0000 mgr.smithi040.evuiyl (mgr.14180) 179 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:28.817 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:29.755 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:29 smithi040 bash[24841]: cluster 2023-12-08T22:50:28.251275+0000 mgr.smithi040.evuiyl (mgr.14180) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:29 smithi149 bash[28710]: cluster 2023-12-08T22:50:28.251275+0000 mgr.smithi040.evuiyl (mgr.14180) 180 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:31.724 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:31 smithi040 bash[24841]: cluster 2023-12-08T22:50:30.251889+0000 mgr.smithi040.evuiyl (mgr.14180) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:31.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:31 smithi149 bash[28710]: cluster 2023-12-08T22:50:30.251889+0000 mgr.smithi040.evuiyl (mgr.14180) 181 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:32.458 INFO:teuthology.orchestra.run.smithi040.stdout:103079215131 2023-12-08T22:50:32.458 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2023-12-08T22:50:33.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:33 smithi040 bash[24841]: cluster 2023-12-08T22:50:32.252512+0000 mgr.smithi040.evuiyl (mgr.14180) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:33 smithi149 bash[28710]: cluster 2023-12-08T22:50:32.252512+0000 mgr.smithi040.evuiyl (mgr.14180) 182 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:35 smithi149 bash[28710]: cluster 2023-12-08T22:50:34.253202+0000 mgr.smithi040.evuiyl (mgr.14180) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:35.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:35 smithi040 bash[24841]: cluster 2023-12-08T22:50:34.253202+0000 mgr.smithi040.evuiyl (mgr.14180) 183 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:37.250 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:37.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:37 smithi040 bash[24841]: cluster 2023-12-08T22:50:36.253923+0000 mgr.smithi040.evuiyl (mgr.14180) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:37 smithi149 bash[28710]: cluster 2023-12-08T22:50:36.253923+0000 mgr.smithi040.evuiyl (mgr.14180) 184 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:39.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:39 smithi040 bash[24841]: cluster 2023-12-08T22:50:38.254415+0000 mgr.smithi040.evuiyl (mgr.14180) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:39 smithi149 bash[28710]: cluster 2023-12-08T22:50:38.254415+0000 mgr.smithi040.evuiyl (mgr.14180) 185 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:40.786 INFO:teuthology.orchestra.run.smithi040.stdout:158913789979 2023-12-08T22:50:40.787 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2023-12-08T22:50:41.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:41 smithi149 bash[28710]: cluster 2023-12-08T22:50:40.254737+0000 mgr.smithi040.evuiyl (mgr.14180) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:41.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:41 smithi040 bash[24841]: cluster 2023-12-08T22:50:40.254737+0000 mgr.smithi040.evuiyl (mgr.14180) 186 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:43.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:43 smithi040 bash[24841]: cluster 2023-12-08T22:50:42.255372+0000 mgr.smithi040.evuiyl (mgr.14180) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:43.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:43 smithi149 bash[28710]: cluster 2023-12-08T22:50:42.255372+0000 mgr.smithi040.evuiyl (mgr.14180) 187 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:44.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:44 smithi040 bash[24841]: audit 2023-12-08T22:50:43.590465+0000 mon.smithi040 (mon.0) 600 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:50:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:44 smithi149 bash[28710]: audit 2023-12-08T22:50:43.590465+0000 mon.smithi040 (mon.0) 600 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:50:45.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:45 smithi040 bash[24841]: cluster 2023-12-08T22:50:44.255987+0000 mgr.smithi040.evuiyl (mgr.14180) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:45.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:45 smithi149 bash[28710]: cluster 2023-12-08T22:50:44.255987+0000 mgr.smithi040.evuiyl (mgr.14180) 188 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:45.573 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:47 smithi040 bash[24841]: cluster 2023-12-08T22:50:46.256596+0000 mgr.smithi040.evuiyl (mgr.14180) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:47 smithi149 bash[28710]: cluster 2023-12-08T22:50:46.256596+0000 mgr.smithi040.evuiyl (mgr.14180) 189 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:48.962 INFO:teuthology.orchestra.run.smithi040.stdout:124554051613 2023-12-08T22:50:48.963 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2023-12-08T22:50:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:49 smithi040 bash[24841]: cluster 2023-12-08T22:50:48.257022+0000 mgr.smithi040.evuiyl (mgr.14180) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:49 smithi040 bash[24841]: audit 2023-12-08T22:50:48.748730+0000 mon.smithi040 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:49 smithi040 bash[24841]: audit 2023-12-08T22:50:49.037662+0000 mon.smithi040 (mon.0) 602 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:49 smithi040 bash[24841]: audit 2023-12-08T22:50:49.307342+0000 mon.smithi040 (mon.0) 603 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:50:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:49 smithi040 bash[24841]: audit 2023-12-08T22:50:49.308748+0000 mon.smithi040 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:50:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:49 smithi149 bash[28710]: cluster 2023-12-08T22:50:48.257022+0000 mgr.smithi040.evuiyl (mgr.14180) 190 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:49 smithi149 bash[28710]: audit 2023-12-08T22:50:48.748730+0000 mon.smithi040 (mon.0) 601 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:49 smithi149 bash[28710]: audit 2023-12-08T22:50:49.037662+0000 mon.smithi040 (mon.0) 602 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:49 smithi149 bash[28710]: audit 2023-12-08T22:50:49.307342+0000 mon.smithi040 (mon.0) 603 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:50:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:49 smithi149 bash[28710]: audit 2023-12-08T22:50:49.308748+0000 mon.smithi040 (mon.0) 604 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:50:50.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:50 smithi040 bash[24841]: audit 2023-12-08T22:50:49.318413+0000 mon.smithi040 (mon.0) 605 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:50.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:50 smithi040 bash[24841]: audit 2023-12-08T22:50:49.327216+0000 mon.smithi040 (mon.0) 606 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:50:50.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:50 smithi149 bash[28710]: audit 2023-12-08T22:50:49.318413+0000 mon.smithi040 (mon.0) 605 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:50:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:50 smithi149 bash[28710]: audit 2023-12-08T22:50:49.327216+0000 mon.smithi040 (mon.0) 606 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:50:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:51 smithi149 bash[28710]: cluster 2023-12-08T22:50:50.257565+0000 mgr.smithi040.evuiyl (mgr.14180) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:51.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:51 smithi040 bash[24841]: cluster 2023-12-08T22:50:50.257565+0000 mgr.smithi040.evuiyl (mgr.14180) 191 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:53.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:53 smithi040 bash[24841]: cluster 2023-12-08T22:50:52.258176+0000 mgr.smithi040.evuiyl (mgr.14180) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:53.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:53 smithi149 bash[28710]: cluster 2023-12-08T22:50:52.258176+0000 mgr.smithi040.evuiyl (mgr.14180) 192 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:53.753 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:50:55.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:55 smithi040 bash[24841]: cluster 2023-12-08T22:50:54.258730+0000 mgr.smithi040.evuiyl (mgr.14180) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:55 smithi149 bash[28710]: cluster 2023-12-08T22:50:54.258730+0000 mgr.smithi040.evuiyl (mgr.14180) 193 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:57.201 INFO:teuthology.orchestra.run.smithi040.stdout:176093659163 2023-12-08T22:50:57.201 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.0 2023-12-08T22:50:57.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:57 smithi040 bash[24841]: cluster 2023-12-08T22:50:56.259092+0000 mgr.smithi040.evuiyl (mgr.14180) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:57 smithi149 bash[28710]: cluster 2023-12-08T22:50:56.259092+0000 mgr.smithi040.evuiyl (mgr.14180) 194 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:59.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:50:59 smithi040 bash[24841]: cluster 2023-12-08T22:50:58.259578+0000 mgr.smithi040.evuiyl (mgr.14180) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:50:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:50:59 smithi149 bash[28710]: cluster 2023-12-08T22:50:58.259578+0000 mgr.smithi040.evuiyl (mgr.14180) 195 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:01.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:01 smithi149 bash[28710]: cluster 2023-12-08T22:51:00.260187+0000 mgr.smithi040.evuiyl (mgr.14180) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:01.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:01 smithi040 bash[24841]: cluster 2023-12-08T22:51:00.260187+0000 mgr.smithi040.evuiyl (mgr.14180) 196 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:01.992 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:03.429 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:03 smithi040 bash[24841]: cluster 2023-12-08T22:51:02.260732+0000 mgr.smithi040.evuiyl (mgr.14180) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:03.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:03 smithi149 bash[28710]: cluster 2023-12-08T22:51:02.260732+0000 mgr.smithi040.evuiyl (mgr.14180) 197 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:05.021 INFO:teuthology.orchestra.run.smithi040.stdout:68719476771 2023-12-08T22:51:05.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:05 smithi040 bash[24841]: cluster 2023-12-08T22:51:04.261306+0000 mgr.smithi040.evuiyl (mgr.14180) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:05.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:05 smithi040 bash[24841]: audit 2023-12-08T22:51:05.017685+0000 mon.smithi040 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.40:0/2835038850' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-12-08T22:51:05.767 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476757 got 68719476771 for osd.0 2023-12-08T22:51:05.767 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.1 2023-12-08T22:51:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:05 smithi149 bash[28710]: cluster 2023-12-08T22:51:04.261306+0000 mgr.smithi040.evuiyl (mgr.14180) 198 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:05.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:05 smithi149 bash[28710]: audit 2023-12-08T22:51:05.017685+0000 mon.smithi040 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.40:0/2835038850' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-12-08T22:51:07.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:07 smithi040 bash[24841]: cluster 2023-12-08T22:51:06.261918+0000 mgr.smithi040.evuiyl (mgr.14180) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:07 smithi149 bash[28710]: cluster 2023-12-08T22:51:06.261918+0000 mgr.smithi040.evuiyl (mgr.14180) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:09.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:09 smithi040 bash[24841]: cluster 2023-12-08T22:51:08.262447+0000 mgr.smithi040.evuiyl (mgr.14180) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:09 smithi149 bash[28710]: cluster 2023-12-08T22:51:08.262447+0000 mgr.smithi040.evuiyl (mgr.14180) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:10.562 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:11.592 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:11 smithi040 bash[24841]: cluster 2023-12-08T22:51:10.262997+0000 mgr.smithi040.evuiyl (mgr.14180) 201 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:11.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:11 smithi149 bash[28710]: cluster 2023-12-08T22:51:10.262997+0000 mgr.smithi040.evuiyl (mgr.14180) 201 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:13.466 INFO:teuthology.orchestra.run.smithi040.stdout:107374182436 2023-12-08T22:51:13.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:13 smithi040 bash[24841]: cluster 2023-12-08T22:51:12.263376+0000 mgr.smithi040.evuiyl (mgr.14180) 202 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:13.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:13 smithi149 bash[28710]: cluster 2023-12-08T22:51:12.263376+0000 mgr.smithi040.evuiyl (mgr.14180) 202 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:14.182 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182423 got 107374182436 for osd.1 2023-12-08T22:51:14.182 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.2 2023-12-08T22:51:14.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:14 smithi040 bash[24841]: audit 2023-12-08T22:51:13.463369+0000 mon.smithi040 (mon.0) 608 : audit [DBG] from='client.? 172.21.15.40:0/3003494345' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-12-08T22:51:14.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:14 smithi149 bash[28710]: audit 2023-12-08T22:51:13.463369+0000 mon.smithi040 (mon.0) 608 : audit [DBG] from='client.? 172.21.15.40:0/3003494345' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-12-08T22:51:15.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:15 smithi040 bash[24841]: cluster 2023-12-08T22:51:14.263910+0000 mgr.smithi040.evuiyl (mgr.14180) 203 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:15.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:15 smithi149 bash[28710]: cluster 2023-12-08T22:51:14.263910+0000 mgr.smithi040.evuiyl (mgr.14180) 203 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:17.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:17 smithi040 bash[24841]: cluster 2023-12-08T22:51:16.264538+0000 mgr.smithi040.evuiyl (mgr.14180) 204 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:17 smithi149 bash[28710]: cluster 2023-12-08T22:51:16.264538+0000 mgr.smithi040.evuiyl (mgr.14180) 204 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:18.978 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:19.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:19 smithi040 bash[24841]: cluster 2023-12-08T22:51:18.265082+0000 mgr.smithi040.evuiyl (mgr.14180) 205 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:19.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:19 smithi149 bash[28710]: cluster 2023-12-08T22:51:18.265082+0000 mgr.smithi040.evuiyl (mgr.14180) 205 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:21.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:21 smithi149 bash[28710]: cluster 2023-12-08T22:51:20.265480+0000 mgr.smithi040.evuiyl (mgr.14180) 206 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:21.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:21 smithi040 bash[24841]: cluster 2023-12-08T22:51:20.265480+0000 mgr.smithi040.evuiyl (mgr.14180) 206 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:21.813 INFO:teuthology.orchestra.run.smithi040.stdout:85899345959 2023-12-08T22:51:22.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:22 smithi040 bash[24841]: audit 2023-12-08T22:51:21.809624+0000 mon.smithi040 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.40:0/3313911112' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-12-08T22:51:22.581 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345946 got 85899345959 for osd.2 2023-12-08T22:51:22.581 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.3 2023-12-08T22:51:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:22 smithi149 bash[28710]: audit 2023-12-08T22:51:21.809624+0000 mon.smithi040 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.40:0/3313911112' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-12-08T22:51:23.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:23 smithi040 bash[24841]: cluster 2023-12-08T22:51:22.265830+0000 mgr.smithi040.evuiyl (mgr.14180) 207 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:23 smithi149 bash[28710]: cluster 2023-12-08T22:51:22.265830+0000 mgr.smithi040.evuiyl (mgr.14180) 207 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:25.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:25 smithi040 bash[24841]: cluster 2023-12-08T22:51:24.266336+0000 mgr.smithi040.evuiyl (mgr.14180) 208 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:25 smithi149 bash[28710]: cluster 2023-12-08T22:51:24.266336+0000 mgr.smithi040.evuiyl (mgr.14180) 208 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:27.373 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:27.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:27 smithi040 bash[24841]: cluster 2023-12-08T22:51:26.267001+0000 mgr.smithi040.evuiyl (mgr.14180) 209 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:27.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:27 smithi149 bash[28710]: cluster 2023-12-08T22:51:26.267001+0000 mgr.smithi040.evuiyl (mgr.14180) 209 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:29.737 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:29 smithi040 bash[24841]: cluster 2023-12-08T22:51:28.267568+0000 mgr.smithi040.evuiyl (mgr.14180) 210 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:29 smithi149 bash[28710]: cluster 2023-12-08T22:51:28.267568+0000 mgr.smithi040.evuiyl (mgr.14180) 210 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:30.148 INFO:teuthology.orchestra.run.smithi040.stdout:137438953509 2023-12-08T22:51:30.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:30 smithi040 bash[24841]: audit 2023-12-08T22:51:30.144863+0000 mon.smithi040 (mon.0) 610 : audit [DBG] from='client.? 172.21.15.40:0/3600968457' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-12-08T22:51:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:30 smithi149 bash[28710]: audit 2023-12-08T22:51:30.144863+0000 mon.smithi040 (mon.0) 610 : audit [DBG] from='client.? 172.21.15.40:0/3600968457' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-12-08T22:51:30.910 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953496 got 137438953509 for osd.3 2023-12-08T22:51:30.910 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.4 2023-12-08T22:51:31.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:31 smithi149 bash[28710]: cluster 2023-12-08T22:51:30.267957+0000 mgr.smithi040.evuiyl (mgr.14180) 211 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:31.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:31 smithi040 bash[24841]: cluster 2023-12-08T22:51:30.267957+0000 mgr.smithi040.evuiyl (mgr.14180) 211 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:33.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:33 smithi040 bash[24841]: cluster 2023-12-08T22:51:32.268450+0000 mgr.smithi040.evuiyl (mgr.14180) 212 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:33.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:33 smithi149 bash[28710]: cluster 2023-12-08T22:51:32.268450+0000 mgr.smithi040.evuiyl (mgr.14180) 212 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:35.695 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:35.726 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:35 smithi040 bash[24841]: cluster 2023-12-08T22:51:34.269057+0000 mgr.smithi040.evuiyl (mgr.14180) 213 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:35 smithi149 bash[28710]: cluster 2023-12-08T22:51:34.269057+0000 mgr.smithi040.evuiyl (mgr.14180) 213 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:37.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:37 smithi040 bash[24841]: cluster 2023-12-08T22:51:36.269663+0000 mgr.smithi040.evuiyl (mgr.14180) 214 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:37 smithi149 bash[28710]: cluster 2023-12-08T22:51:36.269663+0000 mgr.smithi040.evuiyl (mgr.14180) 214 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:38.614 INFO:teuthology.orchestra.run.smithi040.stdout:103079215144 2023-12-08T22:51:39.342 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215131 got 103079215144 for osd.4 2023-12-08T22:51:39.343 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.5 2023-12-08T22:51:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:39 smithi040 bash[24841]: cluster 2023-12-08T22:51:38.270164+0000 mgr.smithi040.evuiyl (mgr.14180) 215 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:39.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:39 smithi040 bash[24841]: audit 2023-12-08T22:51:38.610712+0000 mon.smithi040 (mon.0) 611 : audit [DBG] from='client.? 172.21.15.40:0/2736425597' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-12-08T22:51:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:39 smithi149 bash[28710]: cluster 2023-12-08T22:51:38.270164+0000 mgr.smithi040.evuiyl (mgr.14180) 215 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:39.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:39 smithi149 bash[28710]: audit 2023-12-08T22:51:38.610712+0000 mon.smithi040 (mon.0) 611 : audit [DBG] from='client.? 172.21.15.40:0/2736425597' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-12-08T22:51:41.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:41 smithi149 bash[28710]: cluster 2023-12-08T22:51:40.270683+0000 mgr.smithi040.evuiyl (mgr.14180) 216 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:41.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:41 smithi040 bash[24841]: cluster 2023-12-08T22:51:40.270683+0000 mgr.smithi040.evuiyl (mgr.14180) 216 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:43.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:43 smithi040 bash[24841]: cluster 2023-12-08T22:51:42.271232+0000 mgr.smithi040.evuiyl (mgr.14180) 217 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:43.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:43 smithi149 bash[28710]: cluster 2023-12-08T22:51:42.271232+0000 mgr.smithi040.evuiyl (mgr.14180) 217 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:44.135 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:45.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:45 smithi040 bash[24841]: cluster 2023-12-08T22:51:44.271807+0000 mgr.smithi040.evuiyl (mgr.14180) 218 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:45.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:45 smithi149 bash[28710]: cluster 2023-12-08T22:51:44.271807+0000 mgr.smithi040.evuiyl (mgr.14180) 218 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:47.065 INFO:teuthology.orchestra.run.smithi040.stdout:158913789992 2023-12-08T22:51:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:47 smithi040 bash[24841]: cluster 2023-12-08T22:51:46.272392+0000 mgr.smithi040.evuiyl (mgr.14180) 219 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:47.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:47 smithi040 bash[24841]: audit 2023-12-08T22:51:47.061313+0000 mon.smithi040 (mon.0) 612 : audit [DBG] from='client.? 172.21.15.40:0/2397695464' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-12-08T22:51:47.789 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789979 got 158913789992 for osd.5 2023-12-08T22:51:47.790 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.6 2023-12-08T22:51:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:47 smithi149 bash[28710]: cluster 2023-12-08T22:51:46.272392+0000 mgr.smithi040.evuiyl (mgr.14180) 219 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:47.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:47 smithi149 bash[28710]: audit 2023-12-08T22:51:47.061313+0000 mon.smithi040 (mon.0) 612 : audit [DBG] from='client.? 172.21.15.40:0/2397695464' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-12-08T22:51:49.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:49 smithi040 bash[24841]: cluster 2023-12-08T22:51:48.273052+0000 mgr.smithi040.evuiyl (mgr.14180) 220 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:49 smithi149 bash[28710]: cluster 2023-12-08T22:51:48.273052+0000 mgr.smithi040.evuiyl (mgr.14180) 220 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:50.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:50 smithi040 bash[24841]: audit 2023-12-08T22:51:49.337214+0000 mon.smithi040 (mon.0) 613 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:51:50.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:50 smithi149 bash[28710]: audit 2023-12-08T22:51:49.337214+0000 mon.smithi040 (mon.0) 613 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:51:51.740 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:51 smithi149 bash[28710]: cluster 2023-12-08T22:51:50.273755+0000 mgr.smithi040.evuiyl (mgr.14180) 221 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:51.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:51 smithi040 bash[24841]: cluster 2023-12-08T22:51:50.273755+0000 mgr.smithi040.evuiyl (mgr.14180) 221 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:52.576 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:51:53.508 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:53 smithi040 bash[24841]: cluster 2023-12-08T22:51:52.274457+0000 mgr.smithi040.evuiyl (mgr.14180) 222 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:53.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:53 smithi149 bash[28710]: cluster 2023-12-08T22:51:52.274457+0000 mgr.smithi040.evuiyl (mgr.14180) 222 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: cluster 2023-12-08T22:51:54.275047+0000 mgr.smithi040.evuiyl (mgr.14180) 223 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:54.646428+0000 mon.smithi040 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:54.791944+0000 mon.smithi040 (mon.0) 615 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:55.081488+0000 mon.smithi040 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:55.083108+0000 mon.smithi040 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:55.090633+0000 mon.smithi040 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:55 smithi040 bash[24841]: audit 2023-12-08T22:51:55.096878+0000 mon.smithi040 (mon.0) 619 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:51:55.546 INFO:teuthology.orchestra.run.smithi040.stdout:124554051626 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: cluster 2023-12-08T22:51:54.275047+0000 mgr.smithi040.evuiyl (mgr.14180) 223 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:54.646428+0000 mon.smithi040 (mon.0) 614 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:54.791944+0000 mon.smithi040 (mon.0) 615 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:55.081488+0000 mon.smithi040 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:55.083108+0000 mon.smithi040 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:55.090633+0000 mon.smithi040 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:51:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:55 smithi149 bash[28710]: audit 2023-12-08T22:51:55.096878+0000 mon.smithi040 (mon.0) 619 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:51:56.260 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051613 got 124554051626 for osd.6 2023-12-08T22:51:56.260 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph osd last-stat-seq osd.7 2023-12-08T22:51:56.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:56 smithi040 bash[24841]: audit 2023-12-08T22:51:55.543113+0000 mon.smithi040 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.40:0/2235886959' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-12-08T22:51:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:56 smithi149 bash[28710]: audit 2023-12-08T22:51:55.543113+0000 mon.smithi040 (mon.0) 620 : audit [DBG] from='client.? 172.21.15.40:0/2235886959' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-12-08T22:51:57.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:57 smithi040 bash[24841]: cluster 2023-12-08T22:51:56.275582+0000 mgr.smithi040.evuiyl (mgr.14180) 224 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:57 smithi149 bash[28710]: cluster 2023-12-08T22:51:56.275582+0000 mgr.smithi040.evuiyl (mgr.14180) 224 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:59.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:51:59 smithi040 bash[24841]: cluster 2023-12-08T22:51:58.276138+0000 mgr.smithi040.evuiyl (mgr.14180) 225 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:51:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:51:59 smithi149 bash[28710]: cluster 2023-12-08T22:51:58.276138+0000 mgr.smithi040.evuiyl (mgr.14180) 225 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:01.052 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:52:01.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:01 smithi149 bash[28710]: cluster 2023-12-08T22:52:00.276716+0000 mgr.smithi040.evuiyl (mgr.14180) 226 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:01.760 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:01 smithi040 bash[24841]: cluster 2023-12-08T22:52:00.276716+0000 mgr.smithi040.evuiyl (mgr.14180) 226 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:03.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:03 smithi040 bash[24841]: cluster 2023-12-08T22:52:02.277303+0000 mgr.smithi040.evuiyl (mgr.14180) 227 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:03.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:03 smithi149 bash[28710]: cluster 2023-12-08T22:52:02.277303+0000 mgr.smithi040.evuiyl (mgr.14180) 227 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:04.033 INFO:teuthology.orchestra.run.smithi040.stdout:176093659176 2023-12-08T22:52:04.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:04 smithi040 bash[24841]: audit 2023-12-08T22:52:04.029973+0000 mon.smithi040 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.40:0/411860178' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-12-08T22:52:04.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:04 smithi149 bash[28710]: audit 2023-12-08T22:52:04.029973+0000 mon.smithi040 (mon.0) 621 : audit [DBG] from='client.? 172.21.15.40:0/411860178' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-12-08T22:52:04.772 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659163 got 176093659176 for osd.7 2023-12-08T22:52:04.772 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2023-12-08T22:52:04.772 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph pg dump --format=json 2023-12-08T22:52:05.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:05 smithi040 bash[24841]: cluster 2023-12-08T22:52:04.277972+0000 mgr.smithi040.evuiyl (mgr.14180) 228 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:05.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:05 smithi149 bash[28710]: cluster 2023-12-08T22:52:04.277972+0000 mgr.smithi040.evuiyl (mgr.14180) 228 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:07.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:07 smithi040 bash[24841]: cluster 2023-12-08T22:52:06.278618+0000 mgr.smithi040.evuiyl (mgr.14180) 229 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:07 smithi149 bash[28710]: cluster 2023-12-08T22:52:06.278618+0000 mgr.smithi040.evuiyl (mgr.14180) 229 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:09.561 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:52:09.593 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:09 smithi040 bash[24841]: cluster 2023-12-08T22:52:08.279173+0000 mgr.smithi040.evuiyl (mgr.14180) 230 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:09.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:09 smithi149 bash[28710]: cluster 2023-12-08T22:52:08.279173+0000 mgr.smithi040.evuiyl (mgr.14180) 230 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:11.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:11 smithi040 bash[24841]: cluster 2023-12-08T22:52:10.279740+0000 mgr.smithi040.evuiyl (mgr.14180) 231 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:11.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:11 smithi149 bash[28710]: cluster 2023-12-08T22:52:10.279740+0000 mgr.smithi040.evuiyl (mgr.14180) 231 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:12.347 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:52:12.350 INFO:teuthology.orchestra.run.smithi040.stderr:dumped all 2023-12-08T22:52:13.100 INFO:teuthology.orchestra.run.smithi040.stdout:{"pg_ready":true,"pg_map":{"version":217,"stamp":"2023-12-08T22:52:12.279992+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2380136,"kb_used_data":3368,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548312,"statfs":{"total":767926730752,"available":765489471488,"internally_reserved":0,"allocated":3448832,"data_stored":1345492,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":43,"state":"active+clean","last_fresh":"2023-12-08T22:48:52.438030+0000","last_change":"2023-12-08T22:48:52.438030+0000","last_active":"2023-12-08T22:48:52.438030+0000","last_peered":"2023-12-08T22:48:52.438030+0000","last_clean":"2023-12-08T22:48:52.438030+0000","last_became_active":"2023-12-08T22:48:52.437212+0000","last_became_peered":"2023-12-08T22:48:52.437212+0000","last_unstale":"2023-12-08T22:48:52.438030+0000","last_undegraded":"2023-12-08T22:48:52.438030+0000","last_fullsized":"2023-12-08T22:48:52.438030+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-12-08T22:48:29.239813+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-12-08T22:48:29.239813+0000","last_clean_scrub_stamp":"2023-12-08T22:48:29.239813+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"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":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659178,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297516,"kb_used_data":420,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443540,"statfs":{"total":95990841344,"available":95686184960,"internally_reserved":0,"allocated":430080,"data_stored":168406,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.82399999999999995,"15min":0.81499999999999995},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.2370000000000001,"5min":1.27,"15min":1.27},"last":0.873},{"interface":"front","average":{"1min":0.85799999999999998,"5min":0.88300000000000001,"15min":0.88300000000000001},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.2350000000000001,"5min":1.2350000000000001,"15min":1.2350000000000001},"last":0.83899999999999997}]},{"osd":1,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.748,"5min":0.75,"15min":0.73799999999999999},"min":{"1min":0.45500000000000002,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.304,"5min":1.304,"15min":1.304},"last":0.754},{"interface":"front","average":{"1min":0.83399999999999996,"5min":0.85399999999999998,"15min":0.85299999999999998},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.1579999999999999,"5min":1.294,"15min":1.294},"last":1.1439999999999999}]},{"osd":2,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.90700000000000003,"5min":0.88500000000000001,"15min":0.86299999999999999},"min":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.1879999999999999,"5min":1.3240000000000001,"15min":1.3240000000000001},"last":0.97099999999999997},{"interface":"front","average":{"1min":0.92900000000000005,"5min":0.90200000000000002,"15min":0.89000000000000001},"min":{"1min":0.57699999999999996,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.2450000000000001,"5min":1.2450000000000001,"15min":1.2450000000000001},"last":1.0069999999999999}]},{"osd":3,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.91600000000000004,"5min":0.96099999999999997,"15min":0.96499999999999997},"min":{"1min":0.59999999999999998,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.169,"5min":1.5349999999999999,"15min":1.5349999999999999},"last":1.054},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.93400000000000005,"15min":0.92800000000000005},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.1479999999999999,"5min":1.4950000000000001,"15min":1.4950000000000001},"last":1.121}]},{"osd":4,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":1.036,"15min":1.024},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.3260000000000001,"5min":1.6040000000000001,"15min":1.6040000000000001},"last":1.1859999999999999},{"interface":"front","average":{"1min":1.0589999999999999,"5min":1.0069999999999999,"15min":0.98899999999999999},"min":{"1min":0.752,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.405,"5min":1.405,"15min":1.405},"last":1.2030000000000001}]},{"osd":5,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.0429999999999999,"5min":1.022,"15min":1.008},"min":{"1min":0.505,"5min":0.505,"15min":0.505},"max":{"1min":1.4810000000000001,"5min":1.4810000000000001,"15min":1.4810000000000001},"last":1.3660000000000001},{"interface":"front","average":{"1min":1.042,"5min":1.0960000000000001,"15min":1.0980000000000001},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.2749999999999999,"5min":1.673,"15min":1.673},"last":1.335}]},{"osd":6,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.151,"5min":1.1970000000000001,"15min":1.2},"min":{"1min":0.64700000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.403,"5min":1.762,"15min":1.762},"last":1.403},{"interface":"front","average":{"1min":1.147,"5min":1.161,"15min":1.147},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.764,"5min":1.8280000000000001,"15min":1.8280000000000001},"last":1.4139999999999999}]}]},{"osd":5,"up_from":37,"seq":158913789997,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.79400000000000004,"5min":0.85599999999999998,"15min":0.85799999999999998},"min":{"1min":0.60599999999999998,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.0449999999999999,"5min":1.613,"15min":1.613},"last":1.091},{"interface":"front","average":{"1min":0.83799999999999997,"5min":0.871,"15min":0.86599999999999999},"min":{"1min":0.67300000000000004,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.1240000000000001,"5min":1.282,"15min":1.282},"last":0.82199999999999995}]},{"osd":1,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.76600000000000001,"15min":0.76600000000000001},"min":{"1min":0.60699999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.165,"5min":1.21,"15min":1.21},"last":0.71399999999999997},{"interface":"front","average":{"1min":0.76000000000000001,"5min":0.75600000000000001,"15min":0.72999999999999998},"min":{"1min":0.51500000000000001,"5min":0.437,"15min":0.437},"max":{"1min":1.252,"5min":1.252,"15min":1.252},"last":0.77900000000000003}]},{"osd":2,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.94899999999999995,"15min":0.93700000000000006},"min":{"1min":0.69099999999999995,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.111,"5min":1.411,"15min":1.411},"last":1.008},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.93899999999999995,"15min":0.92300000000000004},"min":{"1min":0.67300000000000004,"5min":0.61299999999999999,"15min":0.61299999999999999},"max":{"1min":1.2070000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":0.90800000000000003}]},{"osd":3,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.89500000000000002,"15min":0.878},"min":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.2769999999999999,"5min":1.2769999999999999,"15min":1.2769999999999999},"last":0.66400000000000003},{"interface":"front","average":{"1min":0.95999999999999996,"5min":0.85099999999999998,"15min":0.82099999999999995},"min":{"1min":0.71799999999999997,"5min":0.51000000000000001,"15min":0.51000000000000001},"max":{"1min":1.1759999999999999,"5min":1.417,"15min":1.417},"last":0.56599999999999995}]},{"osd":4,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.0660000000000001,"5min":1.0269999999999999,"15min":1.0189999999999999},"min":{"1min":0.86299999999999999,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":1.296,"5min":1.353,"15min":1.353},"last":0.98199999999999998},{"interface":"front","average":{"1min":1.0229999999999999,"5min":1.0409999999999999,"15min":1.0329999999999999},"min":{"1min":0.84199999999999997,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.175,"5min":1.5329999999999999,"15min":1.5329999999999999},"last":0.93000000000000005}]},{"osd":6,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.0740000000000001,"15min":1.0489999999999999},"min":{"1min":0.871,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.3080000000000001,"5min":1.5109999999999999,"15min":1.5109999999999999},"last":0.95799999999999996},{"interface":"front","average":{"1min":1.1559999999999999,"5min":1.123,"15min":1.1180000000000001},"min":{"1min":0.80400000000000005,"5min":0.79200000000000004,"15min":0.79200000000000004},"max":{"1min":1.2869999999999999,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":0.90100000000000002}]},{"osd":7,"last update":"Fri Dec 8 22:51:59 2023","interfaces":[{"interface":"back","average":{"1min":1.171,"5min":1.0780000000000001,"15min":1.052},"min":{"1min":0.72599999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.3899999999999999,"5min":1.5680000000000001,"15min":1.5680000000000001},"last":0.85899999999999999},{"interface":"front","average":{"1min":1.165,"5min":1.1000000000000001,"15min":1.0920000000000001},"min":{"1min":0.90700000000000003,"5min":0.623,"15min":0.623},"max":{"1min":1.552,"5min":1.609,"15min":1.609},"last":1.042}]}]},{"osd":2,"up_from":20,"seq":85899345969,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297512,"kb_used_data":416,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443544,"statfs":{"total":95990841344,"available":95686189056,"internally_reserved":0,"allocated":425984,"data_stored":166474,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:29 2023","interfaces":[{"interface":"back","average":{"1min":0.68799999999999994,"5min":0.68899999999999995,"15min":0.68999999999999995},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":1.0089999999999999,"5min":1.1160000000000001,"15min":1.1160000000000001},"last":0.85099999999999998},{"interface":"front","average":{"1min":0.82699999999999996,"5min":0.77300000000000002,"15min":0.76500000000000001},"min":{"1min":0.45200000000000001,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":1.095,"5min":1.1719999999999999,"15min":1.1719999999999999},"last":0.97299999999999998}]},{"osd":1,"last update":"Fri Dec 8 22:51:34 2023","interfaces":[{"interface":"back","average":{"1min":0.91000000000000003,"5min":0.88400000000000001,"15min":0.876},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.26,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":1.1299999999999999},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.89800000000000002,"15min":0.90600000000000003},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.133,"5min":1.2270000000000001,"15min":1.2270000000000001},"last":0.93999999999999995}]},{"osd":3,"last update":"Fri Dec 8 22:51:47 2023","interfaces":[{"interface":"back","average":{"1min":1.0329999999999999,"5min":1.042,"15min":1.0429999999999999},"min":{"1min":0.75,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.381,"5min":1.383,"15min":1.383},"last":1.1000000000000001},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.0169999999999999,"15min":1.018},"min":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"max":{"1min":1.415,"5min":1.415,"15min":1.415},"last":1.085}]},{"osd":4,"last update":"Fri Dec 8 22:51:34 2023","interfaces":[{"interface":"back","average":{"1min":0.83799999999999997,"5min":0.81499999999999995,"15min":0.81699999999999995},"min":{"1min":0.626,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.153,"5min":1.153,"15min":1.153},"last":0.75},{"interface":"front","average":{"1min":0.93799999999999994,"5min":0.90400000000000003,"15min":0.90400000000000003},"min":{"1min":0.65200000000000002,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.1990000000000001,"5min":1.1990000000000001,"15min":1.1990000000000001},"last":0.68700000000000006}]},{"osd":5,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":1.04,"15min":1.036},"min":{"1min":0.78800000000000003,"5min":0.72999999999999998,"15min":0.72999999999999998},"max":{"1min":1.3089999999999999,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":0.88900000000000001},{"interface":"front","average":{"1min":0.98599999999999999,"5min":1.0229999999999999,"15min":1.0349999999999999},"min":{"1min":0.76300000000000001,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.161,"5min":1.524,"15min":1.524},"last":1.1830000000000001}]},{"osd":6,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":1.018,"5min":0.98999999999999999,"15min":0.98099999999999998},"min":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.266,"5min":1.484,"15min":1.484},"last":0.79400000000000004},{"interface":"front","average":{"1min":1.0529999999999999,"5min":0.98799999999999999,"15min":0.97199999999999998},"min":{"1min":0.81299999999999994,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":1.5129999999999999,"5min":1.5129999999999999,"15min":1.5129999999999999},"last":1.0069999999999999}]},{"osd":7,"last update":"Fri Dec 8 22:51:53 2023","interfaces":[{"interface":"back","average":{"1min":1.0589999999999999,"5min":1.0369999999999999,"15min":1.0349999999999999},"min":{"1min":0.88800000000000001,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.403,"5min":1.77,"15min":1.77},"last":1.0549999999999999},{"interface":"front","average":{"1min":1.2250000000000001,"5min":1.1579999999999999,"15min":1.1379999999999999},"min":{"1min":0.91300000000000003,"5min":0.82099999999999995,"15min":0.82099999999999995},"max":{"1min":1.4470000000000001,"5min":1.6339999999999999,"15min":1.6339999999999999},"last":1.0349999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476784,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297512,"kb_used_data":416,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443544,"statfs":{"total":95990841344,"available":95686189056,"internally_reserved":0,"allocated":425984,"data_stored":167322,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"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":[{"osd":1,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.89200000000000002,"5min":0.79600000000000004,"15min":0.76400000000000001},"min":{"1min":0.68100000000000005,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.073,"5min":1.143,"15min":1.143},"last":0.68100000000000005},{"interface":"front","average":{"1min":0.91200000000000003,"5min":0.86799999999999999,"15min":0.85399999999999998},"min":{"1min":0.78500000000000003,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.145,"5min":1.5980000000000001,"15min":1.5980000000000001},"last":0.89600000000000002}]},{"osd":2,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.78600000000000003,"5min":0.84099999999999997,"15min":0.86699999999999999},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.2190000000000001,"5min":1.534,"15min":1.534},"last":0.72999999999999998},{"interface":"front","average":{"1min":0.78600000000000003,"5min":0.83699999999999997,"15min":0.86399999999999999},"min":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.0720000000000001,"5min":1.724,"15min":1.724},"last":0.79100000000000004}]},{"osd":3,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.86199999999999999,"15min":0.84199999999999997},"min":{"1min":0.64100000000000001,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":1.163,"5min":1.2629999999999999,"15min":1.2629999999999999},"last":0.84199999999999997},{"interface":"front","average":{"1min":1.0409999999999999,"5min":1.01,"15min":0.998},"min":{"1min":0.78100000000000003,"5min":0.77300000000000002,"15min":0.77300000000000002},"max":{"1min":1.3,"5min":1.643,"15min":1.643},"last":1.05}]},{"osd":4,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.84699999999999998,"5min":0.88100000000000001,"15min":0.88400000000000001},"min":{"1min":0.70999999999999996,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.032,"5min":1.8380000000000001,"15min":1.8380000000000001},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.94399999999999995,"15min":0.95799999999999996},"min":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.167,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":0.77200000000000002}]},{"osd":5,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.024,"5min":0.95799999999999996,"15min":0.94499999999999995},"min":{"1min":0.76700000000000002,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.2609999999999999,"5min":1.276,"15min":1.276},"last":0.99299999999999999},{"interface":"front","average":{"1min":1.0329999999999999,"5min":1.038,"15min":1.0409999999999999},"min":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"max":{"1min":1.2849999999999999,"5min":1.5600000000000001,"15min":1.5600000000000001},"last":0.96899999999999997}]},{"osd":6,"last update":"Fri Dec 8 22:51:36 2023","interfaces":[{"interface":"back","average":{"1min":1.0189999999999999,"5min":1.079,"15min":1.097},"min":{"1min":0.77300000000000002,"5min":0.77300000000000002,"15min":0.77300000000000002},"max":{"1min":1.1930000000000001,"5min":1.7989999999999999,"15min":1.7989999999999999},"last":1.0349999999999999},{"interface":"front","average":{"1min":1.087,"5min":1.077,"15min":1.075},"min":{"1min":0.71199999999999997,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.242,"5min":1.357,"15min":1.357},"last":1.0189999999999999}]},{"osd":7,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.1240000000000001,"15min":1.1120000000000001},"min":{"1min":0.92500000000000004,"5min":0.85499999999999998,"15min":0.85499999999999998},"max":{"1min":1.7430000000000001,"5min":1.7430000000000001,"15min":1.7430000000000001},"last":1.0940000000000001},{"interface":"front","average":{"1min":1.1639999999999999,"5min":1.1859999999999999,"15min":1.194},"min":{"1min":0.97599999999999998,"5min":0.92200000000000004,"15min":0.92200000000000004},"max":{"1min":1.4299999999999999,"5min":1.7649999999999999,"15min":1.7649999999999999},"last":1.107}]}]},{"osd":4,"up_from":24,"seq":103079215151,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.71299999999999997,"5min":0.73799999999999999,"15min":0.73799999999999999},"min":{"1min":0.53900000000000003,"5min":0.437,"15min":0.437},"max":{"1min":1.1220000000000001,"5min":1.218,"15min":1.218},"last":1.1839999999999999},{"interface":"front","average":{"1min":0.746,"5min":0.748,"15min":0.746},"min":{"1min":0.55900000000000005,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.96399999999999997,"5min":1.0620000000000001,"15min":1.0620000000000001},"last":0.77000000000000002}]},{"osd":1,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":1.024,"5min":0.95799999999999996,"15min":0.93400000000000005},"min":{"1min":0.68600000000000005,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.8580000000000001,"5min":1.8580000000000001,"15min":1.8580000000000001},"last":0.81999999999999995},{"interface":"front","average":{"1min":1.0780000000000001,"5min":1.0189999999999999,"15min":0.98899999999999999},"min":{"1min":0.76200000000000001,"5min":0.68600000000000005,"15min":0.68600000000000005},"max":{"1min":1.885,"5min":1.885,"15min":1.885},"last":0.85799999999999998}]},{"osd":2,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.78300000000000003,"5min":0.76100000000000001,"15min":0.754},"min":{"1min":0.59299999999999997,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":0.98599999999999999,"5min":1.105,"15min":1.105},"last":1.0409999999999999},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.85799999999999998,"15min":0.85599999999999998},"min":{"1min":0.66400000000000003,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.321,"5min":1.321,"15min":1.321},"last":1.0900000000000001}]},{"osd":3,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":0.95799999999999996,"5min":0.95399999999999996,"15min":0.96699999999999997},"min":{"1min":0.78800000000000003,"5min":0.68700000000000006,"15min":0.68700000000000006},"max":{"1min":1.1739999999999999,"5min":1.2769999999999999,"15min":1.2769999999999999},"last":0.96899999999999997},{"interface":"front","average":{"1min":1.0249999999999999,"5min":1.024,"15min":1.0249999999999999},"min":{"1min":0.74299999999999999,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.764,"5min":1.764,"15min":1.764},"last":1.2729999999999999}]},{"osd":5,"last update":"Fri Dec 8 22:51:52 2023","interfaces":[{"interface":"back","average":{"1min":1.012,"5min":0.98699999999999999,"15min":0.98499999999999999},"min":{"1min":0.79700000000000004,"5min":0.747,"15min":0.747},"max":{"1min":1.4530000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.999},{"interface":"front","average":{"1min":1.0189999999999999,"5min":1.0489999999999999,"15min":1.0629999999999999},"min":{"1min":0.79300000000000004,"5min":0.76000000000000001,"15min":0.76000000000000001},"max":{"1min":1.288,"5min":1.288,"15min":1.288},"last":1.3200000000000001}]},{"osd":6,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":0.999,"5min":1.056,"15min":1.0920000000000001},"min":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.716,"5min":1.716,"15min":1.716},"last":1.3400000000000001},{"interface":"front","average":{"1min":1.01,"5min":0.996,"15min":1.0009999999999999},"min":{"1min":0.77400000000000002,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.3480000000000001,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":1.232}]},{"osd":7,"last update":"Fri Dec 8 22:51:58 2023","interfaces":[{"interface":"back","average":{"1min":1.159,"5min":1.127,"15min":1.1200000000000001},"min":{"1min":0.83599999999999997,"5min":0.79400000000000004,"15min":0.79400000000000004},"max":{"1min":1.8,"5min":1.8,"15min":1.8},"last":1.3959999999999999},{"interface":"front","average":{"1min":1.127,"5min":1.0960000000000001,"15min":1.081},"min":{"1min":0.81599999999999995,"5min":0.78500000000000003,"15min":0.78500000000000003},"max":{"1min":1.512,"5min":1.512,"15min":1.512},"last":1.2989999999999999}]}]},{"osd":1,"up_from":25,"seq":107374182448,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":0.873,"5min":0.90300000000000002,"15min":0.90300000000000002},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1699999999999999,"5min":1.3169999999999999,"15min":1.3169999999999999},"last":0.93600000000000005},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.93799999999999994,"15min":0.93600000000000005},"min":{"1min":0.65700000000000003,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.25,"5min":2.8860000000000001,"15min":2.8860000000000001},"last":0.90200000000000002}]},{"osd":2,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.88700000000000001,"15min":0.87},"min":{"1min":0.625,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.355,"5min":1.355,"15min":1.355},"last":1.0660000000000001},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.874,"15min":0.85699999999999998},"min":{"1min":0.66700000000000004,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.667,"5min":1.667,"15min":1.667},"last":0.77800000000000002}]},{"osd":3,"last update":"Fri Dec 8 22:51:42 2023","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.86899999999999999,"15min":0.86499999999999999},"min":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"max":{"1min":1.5129999999999999,"5min":1.6100000000000001,"15min":1.6100000000000001},"last":0.61399999999999999},{"interface":"front","average":{"1min":0.88,"5min":0.84399999999999997,"15min":0.84599999999999997},"min":{"1min":0.57499999999999996,"5min":0.498,"15min":0.498},"max":{"1min":1.274,"5min":1.8979999999999999,"15min":1.8979999999999999},"last":0.74299999999999999}]},{"osd":4,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":1.034,"5min":0.95499999999999996,"15min":0.92400000000000004},"min":{"1min":0.81399999999999995,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.373,"5min":1.373,"15min":1.373},"last":0.85199999999999998},{"interface":"front","average":{"1min":1.091,"5min":0.97599999999999998,"15min":0.93400000000000005},"min":{"1min":0.70799999999999996,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.4219999999999999,"5min":1.4219999999999999,"15min":1.4219999999999999},"last":1.016}]},{"osd":5,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.016,"5min":0.96299999999999997,"15min":0.93999999999999995},"min":{"1min":0.66000000000000003,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.488,"5min":1.982,"15min":1.982},"last":0.67500000000000004},{"interface":"front","average":{"1min":1.0720000000000001,"5min":1,"15min":0.98799999999999999},"min":{"1min":0.72399999999999998,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.5569999999999999,"5min":2.0390000000000001,"15min":2.0390000000000001},"last":0.81200000000000006}]},{"osd":6,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":1.181,"5min":1.1160000000000001,"15min":1.0980000000000001},"min":{"1min":0.79500000000000004,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.7010000000000001,"5min":2.9420000000000002,"15min":2.9420000000000002},"last":0.93000000000000005},{"interface":"front","average":{"1min":1.1990000000000001,"5min":1.1080000000000001,"15min":1.0720000000000001},"min":{"1min":0.80500000000000005,"5min":0.72199999999999998,"15min":0.72199999999999998},"max":{"1min":1.718,"5min":1.718,"15min":1.718},"last":1.117}]},{"osd":7,"last update":"Fri Dec 8 22:51:59 2023","interfaces":[{"interface":"back","average":{"1min":1.0740000000000001,"5min":1.0309999999999999,"15min":1.02},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.7490000000000001,"5min":1.7490000000000001,"15min":1.7490000000000001},"last":0.86899999999999999},{"interface":"front","average":{"1min":1.2130000000000001,"5min":1.1779999999999999,"15min":1.165},"min":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":1.6739999999999999,"5min":1.6739999999999999,"15min":1.6739999999999999},"last":1.1599999999999999}]}]},{"osd":6,"up_from":29,"seq":124554051630,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.754,"5min":0.69899999999999995,"15min":0.68100000000000005},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.1319999999999999,"5min":1.1319999999999999,"15min":1.1319999999999999},"last":0.91300000000000003},{"interface":"front","average":{"1min":0.73499999999999999,"5min":0.74099999999999999,"15min":0.72699999999999998},"min":{"1min":0.51900000000000002,"5min":0.40500000000000003,"15min":0.40500000000000003},"max":{"1min":1.048,"5min":1.048,"15min":1.048},"last":0.87}]},{"osd":1,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.82199999999999995,"15min":0.81599999999999995},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.1579999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":0.83299999999999996},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.91700000000000004,"15min":0.90600000000000003},"min":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.325,"5min":1.325,"15min":1.325},"last":1.133}]},{"osd":2,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.877,"15min":0.877},"min":{"1min":0.59899999999999998,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.2210000000000001,"5min":1.2210000000000001,"15min":1.2210000000000001},"last":1.024},{"interface":"front","average":{"1min":0.84299999999999997,"5min":0.83299999999999996,"15min":0.82899999999999996},"min":{"1min":0.64300000000000002,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":1.081}]},{"osd":3,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":1.0349999999999999,"5min":1.018,"15min":1.0109999999999999},"min":{"1min":0.83199999999999996,"5min":0.69999999999999996,"15min":0.69999999999999996},"max":{"1min":1.246,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":1.3129999999999999},{"interface":"front","average":{"1min":0.99399999999999999,"5min":1.008,"15min":1.008},"min":{"1min":0.75,"5min":0.68200000000000005,"15min":0.68200000000000005},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":1.238}]},{"osd":4,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.93799999999999994,"5min":0.91500000000000004,"15min":0.91100000000000003},"min":{"1min":0.66500000000000004,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.252,"5min":1.252,"15min":1.252},"last":0.97699999999999998},{"interface":"front","average":{"1min":0.90200000000000002,"5min":0.90400000000000003,"15min":0.91700000000000004},"min":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"max":{"1min":1.1599999999999999,"5min":1.1759999999999999,"15min":1.1759999999999999},"last":1.05}]},{"osd":5,"last update":"Fri Dec 8 22:51:48 2023","interfaces":[{"interface":"back","average":{"1min":1.0509999999999999,"5min":1.0669999999999999,"15min":1.0649999999999999},"min":{"1min":0.76700000000000002,"5min":0.75700000000000001,"15min":0.75700000000000001},"max":{"1min":1.486,"5min":1.486,"15min":1.486},"last":1.165},{"interface":"front","average":{"1min":1.151,"5min":1.103,"15min":1.089},"min":{"1min":0.89700000000000002,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.4390000000000001,"5min":1.4390000000000001,"15min":1.4390000000000001},"last":1.5640000000000001}]},{"osd":7,"last update":"Fri Dec 8 22:51:54 2023","interfaces":[{"interface":"back","average":{"1min":1.1850000000000001,"5min":1.1579999999999999,"15min":1.1519999999999999},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.5209999999999999,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.516},{"interface":"front","average":{"1min":1.117,"5min":1.0800000000000001,"15min":1.0780000000000001},"min":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.603,"5min":1.603,"15min":1.603},"last":1.286}]}]},{"osd":3,"up_from":32,"seq":137438953518,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297516,"kb_used_data":420,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443540,"statfs":{"total":95990841344,"available":95686184960,"internally_reserved":0,"allocated":430080,"data_stored":168406,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.90800000000000003,"5min":0.91000000000000003,"15min":0.91300000000000003},"min":{"1min":0.625,"5min":0.625,"15min":0.625},"max":{"1min":1.246,"5min":1.3129999999999999,"15min":1.3129999999999999},"last":0.94499999999999995},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.81899999999999995,"15min":0.81299999999999994},"min":{"1min":0.64000000000000001,"5min":0.621,"15min":0.621},"max":{"1min":1.4339999999999999,"5min":1.4339999999999999,"15min":1.4339999999999999},"last":0.82199999999999995}]},{"osd":1,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.71399999999999997,"15min":0.68899999999999995},"min":{"1min":0.56299999999999994,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.1180000000000001,"5min":1.2589999999999999,"15min":1.2589999999999999},"last":0.86599999999999999},{"interface":"front","average":{"1min":0.80800000000000005,"5min":0.79800000000000004,"15min":0.78800000000000003},"min":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"max":{"1min":1.2470000000000001,"5min":1.391,"15min":1.391},"last":0.69199999999999995}]},{"osd":2,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.093,"15min":1.087},"min":{"1min":0.80500000000000005,"5min":0.80100000000000005,"15min":0.80100000000000005},"max":{"1min":1.393,"5min":1.393,"15min":1.393},"last":1.048},{"interface":"front","average":{"1min":0.97599999999999998,"5min":0.96199999999999997,"15min":0.95499999999999996},"min":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.2270000000000001,"5min":1.248,"15min":1.248},"last":0.98899999999999999}]},{"osd":4,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.995,"5min":0.92100000000000004,"15min":0.90400000000000003},"min":{"1min":0.69799999999999995,"5min":0.63200000000000001,"15min":0.63200000000000001},"max":{"1min":1.1970000000000001,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":1.036},{"interface":"front","average":{"1min":1.0649999999999999,"5min":1.0389999999999999,"15min":1.0369999999999999},"min":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.3899999999999999,"5min":1.3899999999999999,"15min":1.3899999999999999},"last":1.1499999999999999}]},{"osd":5,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.95899999999999996,"5min":0.88900000000000001,"15min":0.877},"min":{"1min":0.73999999999999999,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.2609999999999999,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":1.087},{"interface":"front","average":{"1min":1.113,"5min":1.0509999999999999,"15min":1.0389999999999999},"min":{"1min":0.71399999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.4259999999999999,"5min":1.4259999999999999,"15min":1.4259999999999999},"last":1.242}]},{"osd":6,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.073,"5min":1.036,"15min":1.0269999999999999},"min":{"1min":0.81299999999999994,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.3500000000000001,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":1.1220000000000001},{"interface":"front","average":{"1min":1.1220000000000001,"5min":1.0820000000000001,"15min":1.0640000000000001},"min":{"1min":0.82699999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.3520000000000001,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":1.2749999999999999}]},{"osd":7,"last update":"Fri Dec 8 22:51:54 2023","interfaces":[{"interface":"back","average":{"1min":1.113,"5min":1.089,"15min":1.069},"min":{"1min":0.58399999999999996,"5min":0.56599999999999995,"15min":0.56599999999999995},"max":{"1min":1.502,"5min":1.976,"15min":1.976},"last":1.0760000000000001},{"interface":"front","average":{"1min":1.2330000000000001,"5min":1.1910000000000001,"15min":1.181},"min":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.526,"5min":1.542,"15min":1.542},"last":1.3360000000000001}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2023-12-08T22:52:13.102 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph pg dump --format=json 2023-12-08T22:52:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:13 smithi040 bash[24841]: cluster 2023-12-08T22:52:12.280280+0000 mgr.smithi040.evuiyl (mgr.14180) 232 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:13 smithi040 bash[24841]: audit 2023-12-08T22:52:12.335365+0000 mgr.smithi040.evuiyl (mgr.14180) 233 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:52:13.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:13 smithi149 bash[28710]: cluster 2023-12-08T22:52:12.280280+0000 mgr.smithi040.evuiyl (mgr.14180) 232 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:13.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:13 smithi149 bash[28710]: audit 2023-12-08T22:52:12.335365+0000 mgr.smithi040.evuiyl (mgr.14180) 233 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:52:15.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:15 smithi040 bash[24841]: cluster 2023-12-08T22:52:14.280874+0000 mgr.smithi040.evuiyl (mgr.14180) 234 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:15 smithi149 bash[28710]: cluster 2023-12-08T22:52:14.280874+0000 mgr.smithi040.evuiyl (mgr.14180) 234 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:17.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:17 smithi040 bash[24841]: cluster 2023-12-08T22:52:16.281473+0000 mgr.smithi040.evuiyl (mgr.14180) 235 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:17 smithi149 bash[28710]: cluster 2023-12-08T22:52:16.281473+0000 mgr.smithi040.evuiyl (mgr.14180) 235 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:17.890 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:52:19.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:19 smithi040 bash[24841]: cluster 2023-12-08T22:52:18.282078+0000 mgr.smithi040.evuiyl (mgr.14180) 236 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:19 smithi149 bash[28710]: cluster 2023-12-08T22:52:18.282078+0000 mgr.smithi040.evuiyl (mgr.14180) 236 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:20.698 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:52:20.701 INFO:teuthology.orchestra.run.smithi040.stderr:dumped all 2023-12-08T22:52:21.369 INFO:teuthology.orchestra.run.smithi040.stdout:{"pg_ready":true,"pg_map":{"version":221,"stamp":"2023-12-08T22:52:20.282372+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2380136,"kb_used_data":3368,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548312,"statfs":{"total":767926730752,"available":765489471488,"internally_reserved":0,"allocated":3448832,"data_stored":1345492,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":43,"state":"active+clean","last_fresh":"2023-12-08T22:48:52.438030+0000","last_change":"2023-12-08T22:48:52.438030+0000","last_active":"2023-12-08T22:48:52.438030+0000","last_peered":"2023-12-08T22:48:52.438030+0000","last_clean":"2023-12-08T22:48:52.438030+0000","last_became_active":"2023-12-08T22:48:52.437212+0000","last_became_peered":"2023-12-08T22:48:52.437212+0000","last_unstale":"2023-12-08T22:48:52.438030+0000","last_undegraded":"2023-12-08T22:48:52.438030+0000","last_fullsized":"2023-12-08T22:48:52.438030+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-12-08T22:48:29.239813+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-12-08T22:48:29.239813+0000","last_clean_scrub_stamp":"2023-12-08T22:48:29.239813+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"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":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659179,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297516,"kb_used_data":420,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443540,"statfs":{"total":95990841344,"available":95686184960,"internally_reserved":0,"allocated":430080,"data_stored":168406,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.77500000000000002,"5min":0.82399999999999995,"15min":0.81499999999999995},"min":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.2370000000000001,"5min":1.27,"15min":1.27},"last":1.0820000000000001},{"interface":"front","average":{"1min":0.85799999999999998,"5min":0.88300000000000001,"15min":0.88300000000000001},"min":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.2350000000000001,"5min":1.2350000000000001,"15min":1.2350000000000001},"last":0.80700000000000005}]},{"osd":1,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.748,"5min":0.75,"15min":0.73799999999999999},"min":{"1min":0.45500000000000002,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.304,"5min":1.304,"15min":1.304},"last":0.877},{"interface":"front","average":{"1min":0.83399999999999996,"5min":0.85399999999999998,"15min":0.85299999999999998},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.1579999999999999,"5min":1.294,"15min":1.294},"last":0.93300000000000005}]},{"osd":2,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.90700000000000003,"5min":0.88500000000000001,"15min":0.86299999999999999},"min":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"max":{"1min":1.1879999999999999,"5min":1.3240000000000001,"15min":1.3240000000000001},"last":0.83599999999999997},{"interface":"front","average":{"1min":0.92900000000000005,"5min":0.90200000000000002,"15min":0.89000000000000001},"min":{"1min":0.57699999999999996,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":1.2450000000000001,"5min":1.2450000000000001,"15min":1.2450000000000001},"last":1.0449999999999999}]},{"osd":3,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.91600000000000004,"5min":0.96099999999999997,"15min":0.96499999999999997},"min":{"1min":0.59999999999999998,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":1.169,"5min":1.5349999999999999,"15min":1.5349999999999999},"last":0.85799999999999998},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.93400000000000005,"15min":0.92800000000000005},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.1479999999999999,"5min":1.4950000000000001,"15min":1.4950000000000001},"last":1.222}]},{"osd":4,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":0.97899999999999998,"5min":1.036,"15min":1.024},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.3260000000000001,"5min":1.6040000000000001,"15min":1.6040000000000001},"last":1.1799999999999999},{"interface":"front","average":{"1min":1.0589999999999999,"5min":1.0069999999999999,"15min":0.98899999999999999},"min":{"1min":0.752,"5min":0.72899999999999998,"15min":0.72899999999999998},"max":{"1min":1.405,"5min":1.405,"15min":1.405},"last":1.194}]},{"osd":5,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.0429999999999999,"5min":1.022,"15min":1.008},"min":{"1min":0.505,"5min":0.505,"15min":0.505},"max":{"1min":1.4810000000000001,"5min":1.4810000000000001,"15min":1.4810000000000001},"last":1.139},{"interface":"front","average":{"1min":1.042,"5min":1.0960000000000001,"15min":1.0980000000000001},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.2749999999999999,"5min":1.673,"15min":1.673},"last":1.125}]},{"osd":6,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.151,"5min":1.1970000000000001,"15min":1.2},"min":{"1min":0.64700000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.403,"5min":1.762,"15min":1.762},"last":0.996},{"interface":"front","average":{"1min":1.147,"5min":1.161,"15min":1.147},"min":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.764,"5min":1.8280000000000001,"15min":1.8280000000000001},"last":1.2789999999999999}]}]},{"osd":5,"up_from":37,"seq":158913789999,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.79400000000000004,"5min":0.85599999999999998,"15min":0.85799999999999998},"min":{"1min":0.60599999999999998,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.0449999999999999,"5min":1.613,"15min":1.613},"last":0.84599999999999997},{"interface":"front","average":{"1min":0.83799999999999997,"5min":0.871,"15min":0.86599999999999999},"min":{"1min":0.67300000000000004,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.1240000000000001,"5min":1.282,"15min":1.282},"last":0.876}]},{"osd":1,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.79100000000000004,"5min":0.76600000000000001,"15min":0.76600000000000001},"min":{"1min":0.60699999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.165,"5min":1.21,"15min":1.21},"last":0.77400000000000002},{"interface":"front","average":{"1min":0.76000000000000001,"5min":0.75600000000000001,"15min":0.72999999999999998},"min":{"1min":0.51500000000000001,"5min":0.437,"15min":0.437},"max":{"1min":1.252,"5min":1.252,"15min":1.252},"last":0.74399999999999999}]},{"osd":2,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.94899999999999995,"15min":0.93700000000000006},"min":{"1min":0.69099999999999995,"5min":0.51800000000000002,"15min":0.51800000000000002},"max":{"1min":1.111,"5min":1.411,"15min":1.411},"last":0.98999999999999999},{"interface":"front","average":{"1min":0.96899999999999997,"5min":0.93899999999999995,"15min":0.92300000000000004},"min":{"1min":0.67300000000000004,"5min":0.61299999999999999,"15min":0.61299999999999999},"max":{"1min":1.2070000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":1.0129999999999999}]},{"osd":3,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.89500000000000002,"15min":0.878},"min":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.2769999999999999,"5min":1.2769999999999999,"15min":1.2769999999999999},"last":0.68600000000000005},{"interface":"front","average":{"1min":0.95999999999999996,"5min":0.85099999999999998,"15min":0.82099999999999995},"min":{"1min":0.71799999999999997,"5min":0.51000000000000001,"15min":0.51000000000000001},"max":{"1min":1.1759999999999999,"5min":1.417,"15min":1.417},"last":0.92800000000000005}]},{"osd":4,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.0660000000000001,"5min":1.0269999999999999,"15min":1.0189999999999999},"min":{"1min":0.86299999999999999,"5min":0.70599999999999996,"15min":0.70599999999999996},"max":{"1min":1.296,"5min":1.353,"15min":1.353},"last":1.0580000000000001},{"interface":"front","average":{"1min":1.0229999999999999,"5min":1.0409999999999999,"15min":1.0329999999999999},"min":{"1min":0.84199999999999997,"5min":0.67700000000000005,"15min":0.67700000000000005},"max":{"1min":1.175,"5min":1.5329999999999999,"15min":1.5329999999999999},"last":0.91700000000000004}]},{"osd":6,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.0740000000000001,"15min":1.0489999999999999},"min":{"1min":0.871,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.3080000000000001,"5min":1.5109999999999999,"15min":1.5109999999999999},"last":1.0720000000000001},{"interface":"front","average":{"1min":1.1559999999999999,"5min":1.123,"15min":1.1180000000000001},"min":{"1min":0.80400000000000005,"5min":0.79200000000000004,"15min":0.79200000000000004},"max":{"1min":1.2869999999999999,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":1.1060000000000001}]},{"osd":7,"last update":"Fri Dec 8 22:51:59 2023","interfaces":[{"interface":"back","average":{"1min":1.171,"5min":1.0780000000000001,"15min":1.052},"min":{"1min":0.72599999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.3899999999999999,"5min":1.5680000000000001,"15min":1.5680000000000001},"last":1},{"interface":"front","average":{"1min":1.165,"5min":1.1000000000000001,"15min":1.0920000000000001},"min":{"1min":0.90700000000000003,"5min":0.623,"15min":0.623},"max":{"1min":1.552,"5min":1.609,"15min":1.609},"last":1.119}]}]},{"osd":2,"up_from":20,"seq":85899345971,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297512,"kb_used_data":416,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443544,"statfs":{"total":95990841344,"available":95686189056,"internally_reserved":0,"allocated":425984,"data_stored":166474,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:29 2023","interfaces":[{"interface":"back","average":{"1min":0.68799999999999994,"5min":0.68899999999999995,"15min":0.68999999999999995},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":1.0089999999999999,"5min":1.1160000000000001,"15min":1.1160000000000001},"last":0.65600000000000003},{"interface":"front","average":{"1min":0.82699999999999996,"5min":0.77300000000000002,"15min":0.76500000000000001},"min":{"1min":0.45200000000000001,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":1.095,"5min":1.1719999999999999,"15min":1.1719999999999999},"last":0.89000000000000001}]},{"osd":1,"last update":"Fri Dec 8 22:51:34 2023","interfaces":[{"interface":"back","average":{"1min":0.91000000000000003,"5min":0.88400000000000001,"15min":0.876},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.26,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":0.84299999999999997},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.89800000000000002,"15min":0.90600000000000003},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.133,"5min":1.2270000000000001,"15min":1.2270000000000001},"last":0.78600000000000003}]},{"osd":3,"last update":"Fri Dec 8 22:51:47 2023","interfaces":[{"interface":"back","average":{"1min":1.0329999999999999,"5min":1.042,"15min":1.0429999999999999},"min":{"1min":0.75,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.381,"5min":1.383,"15min":1.383},"last":1.0329999999999999},{"interface":"front","average":{"1min":1.0089999999999999,"5min":1.0169999999999999,"15min":1.018},"min":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"max":{"1min":1.415,"5min":1.415,"15min":1.415},"last":1.0740000000000001}]},{"osd":4,"last update":"Fri Dec 8 22:51:34 2023","interfaces":[{"interface":"back","average":{"1min":0.83799999999999997,"5min":0.81499999999999995,"15min":0.81699999999999995},"min":{"1min":0.626,"5min":0.59099999999999997,"15min":0.59099999999999997},"max":{"1min":1.153,"5min":1.153,"15min":1.153},"last":0.873},{"interface":"front","average":{"1min":0.93799999999999994,"5min":0.90400000000000003,"15min":0.90400000000000003},"min":{"1min":0.65200000000000002,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.1990000000000001,"5min":1.1990000000000001,"15min":1.1990000000000001},"last":1.236}]},{"osd":5,"last update":"Fri Dec 8 22:51:51 2023","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":1.04,"15min":1.036},"min":{"1min":0.78800000000000003,"5min":0.72999999999999998,"15min":0.72999999999999998},"max":{"1min":1.3089999999999999,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":1.097},{"interface":"front","average":{"1min":0.98599999999999999,"5min":1.0229999999999999,"15min":1.0349999999999999},"min":{"1min":0.76300000000000001,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.161,"5min":1.524,"15min":1.524},"last":1.171}]},{"osd":6,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":1.018,"5min":0.98999999999999999,"15min":0.98099999999999998},"min":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"max":{"1min":1.266,"5min":1.484,"15min":1.484},"last":1.1950000000000001},{"interface":"front","average":{"1min":1.0529999999999999,"5min":0.98799999999999999,"15min":0.97199999999999998},"min":{"1min":0.81299999999999994,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":1.5129999999999999,"5min":1.5129999999999999,"15min":1.5129999999999999},"last":1.008}]},{"osd":7,"last update":"Fri Dec 8 22:51:53 2023","interfaces":[{"interface":"back","average":{"1min":1.0589999999999999,"5min":1.0369999999999999,"15min":1.0349999999999999},"min":{"1min":0.88800000000000001,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.403,"5min":1.77,"15min":1.77},"last":1.117},{"interface":"front","average":{"1min":1.2250000000000001,"5min":1.1579999999999999,"15min":1.1379999999999999},"min":{"1min":0.91300000000000003,"5min":0.82099999999999995,"15min":0.82099999999999995},"max":{"1min":1.4470000000000001,"5min":1.6339999999999999,"15min":1.6339999999999999},"last":1.143}]}]},{"osd":0,"up_from":16,"seq":68719476786,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297512,"kb_used_data":416,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443544,"statfs":{"total":95990841344,"available":95686189056,"internally_reserved":0,"allocated":425984,"data_stored":167322,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"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":[{"osd":1,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.89200000000000002,"5min":0.79600000000000004,"15min":0.76400000000000001},"min":{"1min":0.68100000000000005,"5min":0.58399999999999996,"15min":0.58399999999999996},"max":{"1min":1.073,"5min":1.143,"15min":1.143},"last":1.29},{"interface":"front","average":{"1min":0.91200000000000003,"5min":0.86799999999999999,"15min":0.85399999999999998},"min":{"1min":0.78500000000000003,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.145,"5min":1.5980000000000001,"15min":1.5980000000000001},"last":0.94999999999999996}]},{"osd":2,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.78600000000000003,"5min":0.84099999999999997,"15min":0.86699999999999999},"min":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"max":{"1min":1.2190000000000001,"5min":1.534,"15min":1.534},"last":1.149},{"interface":"front","average":{"1min":0.78600000000000003,"5min":0.83699999999999997,"15min":0.86399999999999999},"min":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.0720000000000001,"5min":1.724,"15min":1.724},"last":0.68200000000000005}]},{"osd":3,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.86199999999999999,"15min":0.84199999999999997},"min":{"1min":0.64100000000000001,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":1.163,"5min":1.2629999999999999,"15min":1.2629999999999999},"last":1.208},{"interface":"front","average":{"1min":1.0409999999999999,"5min":1.01,"15min":0.998},"min":{"1min":0.78100000000000003,"5min":0.77300000000000002,"15min":0.77300000000000002},"max":{"1min":1.3,"5min":1.643,"15min":1.643},"last":1.2350000000000001}]},{"osd":4,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.84699999999999998,"5min":0.88100000000000001,"15min":0.88400000000000001},"min":{"1min":0.70999999999999996,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.032,"5min":1.8380000000000001,"15min":1.8380000000000001},"last":0.86599999999999999},{"interface":"front","average":{"1min":0.88800000000000001,"5min":0.94399999999999995,"15min":0.95799999999999996},"min":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"max":{"1min":1.167,"5min":1.3049999999999999,"15min":1.3049999999999999},"last":1.0840000000000001}]},{"osd":5,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.024,"5min":0.95799999999999996,"15min":0.94499999999999995},"min":{"1min":0.76700000000000002,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.2609999999999999,"5min":1.276,"15min":1.276},"last":0.75600000000000001},{"interface":"front","average":{"1min":1.0329999999999999,"5min":1.038,"15min":1.0409999999999999},"min":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"max":{"1min":1.2849999999999999,"5min":1.5600000000000001,"15min":1.5600000000000001},"last":0.996}]},{"osd":6,"last update":"Fri Dec 8 22:51:36 2023","interfaces":[{"interface":"back","average":{"1min":1.0189999999999999,"5min":1.079,"15min":1.097},"min":{"1min":0.77300000000000002,"5min":0.77300000000000002,"15min":0.77300000000000002},"max":{"1min":1.1930000000000001,"5min":1.7989999999999999,"15min":1.7989999999999999},"last":0.93000000000000005},{"interface":"front","average":{"1min":1.087,"5min":1.077,"15min":1.075},"min":{"1min":0.71199999999999997,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.242,"5min":1.357,"15min":1.357},"last":1.421}]},{"osd":7,"last update":"Fri Dec 8 22:51:55 2023","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.1240000000000001,"15min":1.1120000000000001},"min":{"1min":0.92500000000000004,"5min":0.85499999999999998,"15min":0.85499999999999998},"max":{"1min":1.7430000000000001,"5min":1.7430000000000001,"15min":1.7430000000000001},"last":1.359},{"interface":"front","average":{"1min":1.1639999999999999,"5min":1.1859999999999999,"15min":1.194},"min":{"1min":0.97599999999999998,"5min":0.92200000000000004,"15min":0.92200000000000004},"max":{"1min":1.4299999999999999,"5min":1.7649999999999999,"15min":1.7649999999999999},"last":1.0349999999999999}]}]},{"osd":4,"up_from":24,"seq":103079215153,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.71299999999999997,"5min":0.73799999999999999,"15min":0.73799999999999999},"min":{"1min":0.53900000000000003,"5min":0.437,"15min":0.437},"max":{"1min":1.1220000000000001,"5min":1.218,"15min":1.218},"last":0.78000000000000003},{"interface":"front","average":{"1min":0.746,"5min":0.748,"15min":0.746},"min":{"1min":0.55900000000000005,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.96399999999999997,"5min":1.0620000000000001,"15min":1.0620000000000001},"last":0.747}]},{"osd":1,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":1.024,"5min":0.95799999999999996,"15min":0.93400000000000005},"min":{"1min":0.68600000000000005,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.8580000000000001,"5min":1.8580000000000001,"15min":1.8580000000000001},"last":1.1040000000000001},{"interface":"front","average":{"1min":1.0780000000000001,"5min":1.0189999999999999,"15min":0.98899999999999999},"min":{"1min":0.76200000000000001,"5min":0.68600000000000005,"15min":0.68600000000000005},"max":{"1min":1.885,"5min":1.885,"15min":1.885},"last":1.0800000000000001}]},{"osd":2,"last update":"Fri Dec 8 22:51:33 2023","interfaces":[{"interface":"back","average":{"1min":0.78300000000000003,"5min":0.76100000000000001,"15min":0.754},"min":{"1min":0.59299999999999997,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":0.98599999999999999,"5min":1.105,"15min":1.105},"last":0.85899999999999999},{"interface":"front","average":{"1min":0.89300000000000002,"5min":0.85799999999999998,"15min":0.85599999999999998},"min":{"1min":0.66400000000000003,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.321,"5min":1.321,"15min":1.321},"last":0.98299999999999998}]},{"osd":3,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":0.95799999999999996,"5min":0.95399999999999996,"15min":0.96699999999999997},"min":{"1min":0.78800000000000003,"5min":0.68700000000000006,"15min":0.68700000000000006},"max":{"1min":1.1739999999999999,"5min":1.2769999999999999,"15min":1.2769999999999999},"last":1.018},{"interface":"front","average":{"1min":1.0249999999999999,"5min":1.024,"15min":1.0249999999999999},"min":{"1min":0.74299999999999999,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.764,"5min":1.764,"15min":1.764},"last":1.1379999999999999}]},{"osd":5,"last update":"Fri Dec 8 22:51:52 2023","interfaces":[{"interface":"back","average":{"1min":1.012,"5min":0.98699999999999999,"15min":0.98499999999999999},"min":{"1min":0.79700000000000004,"5min":0.747,"15min":0.747},"max":{"1min":1.4530000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.95999999999999996},{"interface":"front","average":{"1min":1.0189999999999999,"5min":1.0489999999999999,"15min":1.0629999999999999},"min":{"1min":0.79300000000000004,"5min":0.76000000000000001,"15min":0.76000000000000001},"max":{"1min":1.288,"5min":1.288,"15min":1.288},"last":1.26}]},{"osd":6,"last update":"Fri Dec 8 22:51:38 2023","interfaces":[{"interface":"back","average":{"1min":0.999,"5min":1.056,"15min":1.0920000000000001},"min":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.716,"5min":1.716,"15min":1.716},"last":1.204},{"interface":"front","average":{"1min":1.01,"5min":0.996,"15min":1.0009999999999999},"min":{"1min":0.77400000000000002,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.3480000000000001,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":1.0469999999999999}]},{"osd":7,"last update":"Fri Dec 8 22:51:58 2023","interfaces":[{"interface":"back","average":{"1min":1.159,"5min":1.127,"15min":1.1200000000000001},"min":{"1min":0.83599999999999997,"5min":0.79400000000000004,"15min":0.79400000000000004},"max":{"1min":1.8,"5min":1.8,"15min":1.8},"last":1.3},{"interface":"front","average":{"1min":1.127,"5min":1.0960000000000001,"15min":1.081},"min":{"1min":0.81599999999999995,"5min":0.78500000000000003,"15min":0.78500000000000003},"max":{"1min":1.512,"5min":1.512,"15min":1.512},"last":1.2350000000000001}]}]},{"osd":1,"up_from":25,"seq":107374182450,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":0.873,"5min":0.90300000000000002,"15min":0.90300000000000002},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.1699999999999999,"5min":1.3169999999999999,"15min":1.3169999999999999},"last":1.024},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.93799999999999994,"15min":0.93600000000000005},"min":{"1min":0.65700000000000003,"5min":0.55100000000000005,"15min":0.55100000000000005},"max":{"1min":1.25,"5min":2.8860000000000001,"15min":2.8860000000000001},"last":0.754}]},{"osd":2,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.88700000000000001,"15min":0.87},"min":{"1min":0.625,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.355,"5min":1.355,"15min":1.355},"last":0.93899999999999995},{"interface":"front","average":{"1min":0.88600000000000001,"5min":0.874,"15min":0.85699999999999998},"min":{"1min":0.66700000000000004,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.667,"5min":1.667,"15min":1.667},"last":0.95199999999999996}]},{"osd":3,"last update":"Fri Dec 8 22:51:42 2023","interfaces":[{"interface":"back","average":{"1min":0.91800000000000004,"5min":0.86899999999999999,"15min":0.86499999999999999},"min":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"max":{"1min":1.5129999999999999,"5min":1.6100000000000001,"15min":1.6100000000000001},"last":0.54900000000000004},{"interface":"front","average":{"1min":0.88,"5min":0.84399999999999997,"15min":0.84599999999999997},"min":{"1min":0.57499999999999996,"5min":0.498,"15min":0.498},"max":{"1min":1.274,"5min":1.8979999999999999,"15min":1.8979999999999999},"last":0.69799999999999995}]},{"osd":4,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":1.034,"5min":0.95499999999999996,"15min":0.92400000000000004},"min":{"1min":0.81399999999999995,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.373,"5min":1.373,"15min":1.373},"last":0.92300000000000004},{"interface":"front","average":{"1min":1.091,"5min":0.97599999999999998,"15min":0.93400000000000005},"min":{"1min":0.70799999999999996,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.4219999999999999,"5min":1.4219999999999999,"15min":1.4219999999999999},"last":0.89000000000000001}]},{"osd":5,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.016,"5min":0.96299999999999997,"15min":0.93999999999999995},"min":{"1min":0.66000000000000003,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.488,"5min":1.982,"15min":1.982},"last":0.872},{"interface":"front","average":{"1min":1.0720000000000001,"5min":1,"15min":0.98799999999999999},"min":{"1min":0.72399999999999998,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.5569999999999999,"5min":2.0390000000000001,"15min":2.0390000000000001},"last":0.73699999999999999}]},{"osd":6,"last update":"Fri Dec 8 22:51:37 2023","interfaces":[{"interface":"back","average":{"1min":1.181,"5min":1.1160000000000001,"15min":1.0980000000000001},"min":{"1min":0.79500000000000004,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.7010000000000001,"5min":2.9420000000000002,"15min":2.9420000000000002},"last":1.0049999999999999},{"interface":"front","average":{"1min":1.1990000000000001,"5min":1.1080000000000001,"15min":1.0720000000000001},"min":{"1min":0.80500000000000005,"5min":0.72199999999999998,"15min":0.72199999999999998},"max":{"1min":1.718,"5min":1.718,"15min":1.718},"last":0.77000000000000002}]},{"osd":7,"last update":"Fri Dec 8 22:51:59 2023","interfaces":[{"interface":"back","average":{"1min":1.0740000000000001,"5min":1.0309999999999999,"15min":1.02},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.7490000000000001,"5min":1.7490000000000001,"15min":1.7490000000000001},"last":0.78100000000000003},{"interface":"front","average":{"1min":1.2130000000000001,"5min":1.1779999999999999,"15min":1.165},"min":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"max":{"1min":1.6739999999999999,"5min":1.6739999999999999,"15min":1.6739999999999999},"last":0.68000000000000005}]}]},{"osd":6,"up_from":29,"seq":124554051632,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297520,"kb_used_data":424,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443536,"statfs":{"total":95990841344,"available":95686180864,"internally_reserved":0,"allocated":434176,"data_stored":168721,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.754,"5min":0.69899999999999995,"15min":0.68100000000000005},"min":{"1min":0.47299999999999998,"5min":0.47299999999999998,"15min":0.47299999999999998},"max":{"1min":1.1319999999999999,"5min":1.1319999999999999,"15min":1.1319999999999999},"last":0.88200000000000001},{"interface":"front","average":{"1min":0.73499999999999999,"5min":0.74099999999999999,"15min":0.72699999999999998},"min":{"1min":0.51900000000000002,"5min":0.40500000000000003,"15min":0.40500000000000003},"max":{"1min":1.048,"5min":1.048,"15min":1.048},"last":0.628}]},{"osd":1,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.85199999999999998,"5min":0.82199999999999995,"15min":0.81599999999999995},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.1579999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":0.69099999999999995},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.91700000000000004,"15min":0.90600000000000003},"min":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.325,"5min":1.325,"15min":1.325},"last":1.143}]},{"osd":2,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.871,"5min":0.877,"15min":0.877},"min":{"1min":0.59899999999999998,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.2210000000000001,"5min":1.2210000000000001,"15min":1.2210000000000001},"last":1.069},{"interface":"front","average":{"1min":0.84299999999999997,"5min":0.83299999999999996,"15min":0.82899999999999996},"min":{"1min":0.64300000000000002,"5min":0.53400000000000003,"15min":0.53400000000000003},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":0.77000000000000002}]},{"osd":3,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":1.0349999999999999,"5min":1.018,"15min":1.0109999999999999},"min":{"1min":0.83199999999999996,"5min":0.69999999999999996,"15min":0.69999999999999996},"max":{"1min":1.246,"5min":1.2649999999999999,"15min":1.2649999999999999},"last":1.1930000000000001},{"interface":"front","average":{"1min":0.99399999999999999,"5min":1.008,"15min":1.008},"min":{"1min":0.75,"5min":0.68200000000000005,"15min":0.68200000000000005},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":0.97799999999999998}]},{"osd":4,"last update":"Fri Dec 8 22:51:41 2023","interfaces":[{"interface":"back","average":{"1min":0.93799999999999994,"5min":0.91500000000000004,"15min":0.91100000000000003},"min":{"1min":0.66500000000000004,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.252,"5min":1.252,"15min":1.252},"last":0.84699999999999998},{"interface":"front","average":{"1min":0.90200000000000002,"5min":0.90400000000000003,"15min":0.91700000000000004},"min":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"max":{"1min":1.1599999999999999,"5min":1.1759999999999999,"15min":1.1759999999999999},"last":0.93100000000000005}]},{"osd":5,"last update":"Fri Dec 8 22:51:48 2023","interfaces":[{"interface":"back","average":{"1min":1.0509999999999999,"5min":1.0669999999999999,"15min":1.0649999999999999},"min":{"1min":0.76700000000000002,"5min":0.75700000000000001,"15min":0.75700000000000001},"max":{"1min":1.486,"5min":1.486,"15min":1.486},"last":0.92100000000000004},{"interface":"front","average":{"1min":1.151,"5min":1.103,"15min":1.089},"min":{"1min":0.89700000000000002,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.4390000000000001,"5min":1.4390000000000001,"15min":1.4390000000000001},"last":1.282}]},{"osd":7,"last update":"Fri Dec 8 22:51:54 2023","interfaces":[{"interface":"back","average":{"1min":1.1850000000000001,"5min":1.1579999999999999,"15min":1.1519999999999999},"min":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"max":{"1min":1.5209999999999999,"5min":1.5209999999999999,"15min":1.5209999999999999},"last":1.327},{"interface":"front","average":{"1min":1.117,"5min":1.0800000000000001,"15min":1.0780000000000001},"min":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.603,"5min":1.603,"15min":1.603},"last":1.1140000000000001}]}]},{"osd":3,"up_from":32,"seq":137438953519,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297516,"kb_used_data":420,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443540,"statfs":{"total":95990841344,"available":95686184960,"internally_reserved":0,"allocated":430080,"data_stored":168406,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"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":[{"osd":0,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.90800000000000003,"5min":0.91000000000000003,"15min":0.91300000000000003},"min":{"1min":0.625,"5min":0.625,"15min":0.625},"max":{"1min":1.246,"5min":1.3129999999999999,"15min":1.3129999999999999},"last":0.57399999999999995},{"interface":"front","average":{"1min":0.83299999999999996,"5min":0.81899999999999995,"15min":0.81299999999999994},"min":{"1min":0.64000000000000001,"5min":0.621,"15min":0.621},"max":{"1min":1.4339999999999999,"5min":1.4339999999999999,"15min":1.4339999999999999},"last":0.71799999999999997}]},{"osd":1,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.71399999999999997,"15min":0.68899999999999995},"min":{"1min":0.56299999999999994,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.1180000000000001,"5min":1.2589999999999999,"15min":1.2589999999999999},"last":1.349},{"interface":"front","average":{"1min":0.80800000000000005,"5min":0.79800000000000004,"15min":0.78800000000000003},"min":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"max":{"1min":1.2470000000000001,"5min":1.391,"15min":1.391},"last":0.48499999999999999}]},{"osd":2,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.093,"15min":1.087},"min":{"1min":0.80500000000000005,"5min":0.80100000000000005,"15min":0.80100000000000005},"max":{"1min":1.393,"5min":1.393,"15min":1.393},"last":0.88200000000000001},{"interface":"front","average":{"1min":0.97599999999999998,"5min":0.96199999999999997,"15min":0.95499999999999996},"min":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"max":{"1min":1.2270000000000001,"5min":1.248,"15min":1.248},"last":0.92800000000000005}]},{"osd":4,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.995,"5min":0.92100000000000004,"15min":0.90400000000000003},"min":{"1min":0.69799999999999995,"5min":0.63200000000000001,"15min":0.63200000000000001},"max":{"1min":1.1970000000000001,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":1.042},{"interface":"front","average":{"1min":1.0649999999999999,"5min":1.0389999999999999,"15min":1.0369999999999999},"min":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.3899999999999999,"5min":1.3899999999999999,"15min":1.3899999999999999},"last":0.77000000000000002}]},{"osd":5,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":0.95899999999999996,"5min":0.88900000000000001,"15min":0.877},"min":{"1min":0.73999999999999999,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.2609999999999999,"5min":1.3149999999999999,"15min":1.3149999999999999},"last":1.179},{"interface":"front","average":{"1min":1.113,"5min":1.0509999999999999,"15min":1.0389999999999999},"min":{"1min":0.71399999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.4259999999999999,"5min":1.4259999999999999,"15min":1.4259999999999999},"last":0.60199999999999998}]},{"osd":6,"last update":"Fri Dec 8 22:51:49 2023","interfaces":[{"interface":"back","average":{"1min":1.073,"5min":1.036,"15min":1.0269999999999999},"min":{"1min":0.81299999999999994,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.3500000000000001,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":1.0149999999999999},{"interface":"front","average":{"1min":1.1220000000000001,"5min":1.0820000000000001,"15min":1.0640000000000001},"min":{"1min":0.82699999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.3520000000000001,"5min":1.3819999999999999,"15min":1.3819999999999999},"last":1.2669999999999999}]},{"osd":7,"last update":"Fri Dec 8 22:51:54 2023","interfaces":[{"interface":"back","average":{"1min":1.113,"5min":1.089,"15min":1.069},"min":{"1min":0.58399999999999996,"5min":0.56599999999999995,"15min":0.56599999999999995},"max":{"1min":1.502,"5min":1.976,"15min":1.976},"last":0.83899999999999997},{"interface":"front","average":{"1min":1.2330000000000001,"5min":1.1910000000000001,"15min":1.181},"min":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"max":{"1min":1.526,"5min":1.542,"15min":1.542},"last":1.089}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2023-12-08T22:52:21.371 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2023-12-08T22:52:21.372 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2023-12-08T22:52:21.372 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2023-12-08T22:52:21.372 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph health --format=json 2023-12-08T22:52:21.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:21 smithi149 bash[28710]: cluster 2023-12-08T22:52:20.282718+0000 mgr.smithi040.evuiyl (mgr.14180) 237 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:21 smithi040 bash[24841]: cluster 2023-12-08T22:52:20.282718+0000 mgr.smithi040.evuiyl (mgr.14180) 237 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:22.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:22 smithi040 bash[24841]: audit 2023-12-08T22:52:20.687704+0000 mgr.smithi040.evuiyl (mgr.14180) 238 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:52:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:22 smithi149 bash[28710]: audit 2023-12-08T22:52:20.687704+0000 mgr.smithi040.evuiyl (mgr.14180) 238 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:52:23.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:23 smithi040 bash[24841]: cluster 2023-12-08T22:52:22.283307+0000 mgr.smithi040.evuiyl (mgr.14180) 239 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:23 smithi149 bash[28710]: cluster 2023-12-08T22:52:22.283307+0000 mgr.smithi040.evuiyl (mgr.14180) 239 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:25 smithi040 bash[24841]: cluster 2023-12-08T22:52:24.283915+0000 mgr.smithi040.evuiyl (mgr.14180) 240 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:25 smithi149 bash[28710]: cluster 2023-12-08T22:52:24.283915+0000 mgr.smithi040.evuiyl (mgr.14180) 240 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:26.171 INFO:teuthology.orchestra.run.smithi040.stderr:Inferring config /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/mon.smithi040/config 2023-12-08T22:52:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:27 smithi040 bash[24841]: cluster 2023-12-08T22:52:26.284573+0000 mgr.smithi040.evuiyl (mgr.14180) 241 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:27 smithi149 bash[28710]: cluster 2023-12-08T22:52:26.284573+0000 mgr.smithi040.evuiyl (mgr.14180) 241 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:29.111 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:52:29.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:29 smithi040 bash[24841]: cluster 2023-12-08T22:52:28.285155+0000 mgr.smithi040.evuiyl (mgr.14180) 242 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:29.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:29 smithi040 bash[24841]: audit 2023-12-08T22:52:29.107240+0000 mon.smithi040 (mon.0) 622 : audit [DBG] from='client.? 172.21.15.40:0/2303637970' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-12-08T22:52:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:29 smithi149 bash[28710]: cluster 2023-12-08T22:52:28.285155+0000 mgr.smithi040.evuiyl (mgr.14180) 242 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:29.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:29 smithi149 bash[28710]: audit 2023-12-08T22:52:29.107240+0000 mon.smithi040 (mon.0) 622 : audit [DBG] from='client.? 172.21.15.40:0/2303637970' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-12-08T22:52:29.854 INFO:teuthology.orchestra.run.smithi040.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2023-12-08T22:52:29.855 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2023-12-08T22:52:29.855 INFO:tasks.cephadm:Setup complete, yielding 2023-12-08T22:52:29.855 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-08T22:52:29.869 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T22:52:29.870 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch status' 2023-12-08T22:52:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:31 smithi040 bash[24841]: cluster 2023-12-08T22:52:30.285744+0000 mgr.smithi040.evuiyl (mgr.14180) 243 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:31.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:31 smithi149 bash[28710]: cluster 2023-12-08T22:52:30.285744+0000 mgr.smithi040.evuiyl (mgr.14180) 243 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:33.005 INFO:teuthology.orchestra.run.smithi040.stdout:Backend: cephadm 2023-12-08T22:52:33.006 INFO:teuthology.orchestra.run.smithi040.stdout:Available: Yes 2023-12-08T22:52:33.006 INFO:teuthology.orchestra.run.smithi040.stdout:Paused: No 2023-12-08T22:52:33.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:33 smithi040 bash[24841]: cluster 2023-12-08T22:52:32.286331+0000 mgr.smithi040.evuiyl (mgr.14180) 244 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:33 smithi149 bash[28710]: cluster 2023-12-08T22:52:32.286331+0000 mgr.smithi040.evuiyl (mgr.14180) 244 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:33.699 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch ps' 2023-12-08T22:52:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:34 smithi040 bash[24841]: audit 2023-12-08T22:52:33.001319+0000 mgr.smithi040.evuiyl (mgr.14180) 245 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:34.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:34 smithi149 bash[28710]: audit 2023-12-08T22:52:33.001319+0000 mgr.smithi040.evuiyl (mgr.14180) 245 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:35.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:35 smithi040 bash[24841]: cluster 2023-12-08T22:52:34.286890+0000 mgr.smithi040.evuiyl (mgr.14180) 246 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:35.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:35 smithi149 bash[28710]: cluster 2023-12-08T22:52:34.286890+0000 mgr.smithi040.evuiyl (mgr.14180) 246 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:36.741 INFO:teuthology.orchestra.run.smithi040.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:alertmanager.smithi040 smithi040 *:9093,9094 running (5m) 42s ago 7m 11.9M - 0.23.0 ba2b418f427c b524aaf8eb19 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:crash.smithi040 smithi040 running (7m) 42s ago 7m 6928k - 16.2.14-365-g451ceae1 03b62e1f94c4 3af3a4931912 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:crash.smithi149 smithi149 running (6m) 41s ago 6m 7071k - 16.2.14-365-g451ceae1 03b62e1f94c4 c4b5571a10fa 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:grafana.smithi040 smithi040 *:3000 running (5m) 42s ago 6m 41.8M - 8.3.5 dad864ee21e9 787e674c9958 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:mgr.smithi040.evuiyl smithi040 *:9283 running (8m) 42s ago 8m 428M - 16.2.14-365-g451ceae1 03b62e1f94c4 a26126c17230 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:mgr.smithi149.uzeacz smithi149 *:8443,9283 running (5m) 41s ago 5m 374M - 16.2.14-365-g451ceae1 03b62e1f94c4 861808e33770 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:mon.smithi040 smithi040 running (8m) 42s ago 8m 60.0M 2048M 16.2.14-365-g451ceae1 03b62e1f94c4 3bdcd06a26c5 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:mon.smithi149 smithi149 running (5m) 41s ago 5m 59.3M 2048M 16.2.14-365-g451ceae1 03b62e1f94c4 aceeb7939eb4 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:node-exporter.smithi040 smithi040 *:9100 running (6m) 42s ago 6m 10.3M - 1.3.1 1dbe0e931976 3f08caf4bc05 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:node-exporter.smithi149 smithi149 *:9100 running (5m) 41s ago 5m 9652k - 1.3.1 1dbe0e931976 7cd9cacdc50d 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:osd.0 smithi149 running (4m) 41s ago 4m 33.1M 1210M 16.2.14-365-g451ceae1 03b62e1f94c4 c408a3da855b 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:osd.1 smithi040 running (4m) 42s ago 4m 33.6M 3261M 16.2.14-365-g451ceae1 03b62e1f94c4 7a14e0315c69 2023-12-08T22:52:36.742 INFO:teuthology.orchestra.run.smithi040.stdout:osd.2 smithi149 running (4m) 41s ago 4m 35.0M 1210M 16.2.14-365-g451ceae1 03b62e1f94c4 b8e9848f1344 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:osd.3 smithi040 running (4m) 42s ago 4m 33.5M 3261M 16.2.14-365-g451ceae1 03b62e1f94c4 8ae10b97e640 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:osd.4 smithi149 running (4m) 41s ago 4m 32.8M 1210M 16.2.14-365-g451ceae1 03b62e1f94c4 c5ba27c527c9 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:osd.5 smithi040 running (4m) 42s ago 4m 32.7M 3261M 16.2.14-365-g451ceae1 03b62e1f94c4 8a457c59fcce 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:osd.6 smithi149 running (4m) 41s ago 4m 35.0M 1210M 16.2.14-365-g451ceae1 03b62e1f94c4 aca3c846c572 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:osd.7 smithi040 running (3m) 42s ago 3m 33.6M 3261M 16.2.14-365-g451ceae1 03b62e1f94c4 74acb07bd04a 2023-12-08T22:52:36.743 INFO:teuthology.orchestra.run.smithi040.stdout:prometheus.smithi040 smithi040 *:9095 running (5m) 42s ago 6m 54.5M - 2.33.4 514e6a882f6e 7f8017aa8fc0 2023-12-08T22:52:37.508 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch ls' 2023-12-08T22:52:37.709 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:37 smithi040 bash[24841]: cluster 2023-12-08T22:52:36.287491+0000 mgr.smithi040.evuiyl (mgr.14180) 247 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:37 smithi149 bash[28710]: cluster 2023-12-08T22:52:36.287491+0000 mgr.smithi040.evuiyl (mgr.14180) 247 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:38.692 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:38 smithi040 bash[24841]: audit 2023-12-08T22:52:36.719909+0000 mgr.smithi040.evuiyl (mgr.14180) 248 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:38.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:38 smithi149 bash[28710]: audit 2023-12-08T22:52:36.719909+0000 mgr.smithi040.evuiyl (mgr.14180) 248 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:39.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:39 smithi040 bash[24841]: cluster 2023-12-08T22:52:38.288031+0000 mgr.smithi040.evuiyl (mgr.14180) 249 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:39.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:39 smithi149 bash[28710]: cluster 2023-12-08T22:52:38.288031+0000 mgr.smithi040.evuiyl (mgr.14180) 249 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:40.695 INFO:teuthology.orchestra.run.smithi040.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2023-12-08T22:52:40.695 INFO:teuthology.orchestra.run.smithi040.stdout:alertmanager ?:9093,9094 1/1 46s ago 7m count:1 2023-12-08T22:52:40.695 INFO:teuthology.orchestra.run.smithi040.stdout:crash 2/2 46s ago 8m * 2023-12-08T22:52:40.695 INFO:teuthology.orchestra.run.smithi040.stdout:grafana ?:3000 1/1 46s ago 7m count:1 2023-12-08T22:52:40.695 INFO:teuthology.orchestra.run.smithi040.stdout:mgr 2/2 46s ago 8m count:2 2023-12-08T22:52:40.696 INFO:teuthology.orchestra.run.smithi040.stdout:mon 2/2 46s ago 6m smithi040:172.21.15.40=smithi040;smithi149:172.21.15.149=smithi149;count:2 2023-12-08T22:52:40.696 INFO:teuthology.orchestra.run.smithi040.stdout:node-exporter ?:9100 2/2 46s ago 7m * 2023-12-08T22:52:40.696 INFO:teuthology.orchestra.run.smithi040.stdout:osd.all-available-devices 8 46s ago 5m * 2023-12-08T22:52:40.696 INFO:teuthology.orchestra.run.smithi040.stdout:prometheus ?:9095 1/1 46s ago 8m count:1 2023-12-08T22:52:41.416 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch host ls' 2023-12-08T22:52:41.617 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:41 smithi040 bash[24841]: cluster 2023-12-08T22:52:40.288647+0000 mgr.smithi040.evuiyl (mgr.14180) 250 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:41.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:41 smithi149 bash[28710]: cluster 2023-12-08T22:52:40.288647+0000 mgr.smithi040.evuiyl (mgr.14180) 250 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:42.625 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:42 smithi040 bash[24841]: audit 2023-12-08T22:52:40.685112+0000 mgr.smithi040.evuiyl (mgr.14180) 251 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:42 smithi149 bash[28710]: audit 2023-12-08T22:52:40.685112+0000 mgr.smithi040.evuiyl (mgr.14180) 251 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:43.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:43 smithi040 bash[24841]: cluster 2023-12-08T22:52:42.289192+0000 mgr.smithi040.evuiyl (mgr.14180) 252 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:43 smithi149 bash[28710]: cluster 2023-12-08T22:52:42.289192+0000 mgr.smithi040.evuiyl (mgr.14180) 252 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:44.348 INFO:teuthology.orchestra.run.smithi040.stdout:HOST ADDR LABELS STATUS 2023-12-08T22:52:44.348 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 172.21.15.40 2023-12-08T22:52:44.348 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 172.21.15.149 2023-12-08T22:52:44.348 INFO:teuthology.orchestra.run.smithi040.stdout:2 hosts in cluster 2023-12-08T22:52:45.049 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch device ls' 2023-12-08T22:52:45.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:45 smithi040 bash[24841]: cluster 2023-12-08T22:52:44.289730+0000 mgr.smithi040.evuiyl (mgr.14180) 253 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:45.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:45 smithi040 bash[24841]: audit 2023-12-08T22:52:44.342351+0000 mgr.smithi040.evuiyl (mgr.14180) 254 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:45.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:45 smithi149 bash[28710]: cluster 2023-12-08T22:52:44.289730+0000 mgr.smithi040.evuiyl (mgr.14180) 253 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:45.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:45 smithi149 bash[28710]: audit 2023-12-08T22:52:44.342351+0000 mgr.smithi040.evuiyl (mgr.14180) 254 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:47.754 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:47 smithi040 bash[24841]: cluster 2023-12-08T22:52:46.290348+0000 mgr.smithi040.evuiyl (mgr.14180) 255 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:47.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:47 smithi149 bash[28710]: cluster 2023-12-08T22:52:46.290348+0000 mgr.smithi040.evuiyl (mgr.14180) 255 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:48.148 INFO:teuthology.orchestra.run.smithi040.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-12-08T22:52:48.157 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT5330009J400BGN 372G 3m ago LVM detected, locked 2023-12-08T22:52:48.157 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme1n1 ssd Linux_44e525e342fc5df4ccb7 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.157 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme2n1 ssd Linux_36a6ef1b3b435515f6e8 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme3n1 ssd Linux_6e85ec72eecfe6b97e76 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme4n1 ssd Linux_e3a88cde231ebcf4b8a6 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300CK400BGN 372G 3m ago LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme1n1 ssd Linux_30ace6ec8ed0f98af149 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme2n1 ssd Linux_3922da7460681edf4385 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme3n1 ssd Linux_feee61a29db38c88eb11 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.158 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme4n1 ssd Linux_a96efb473f564fa54628 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:48.914 INFO:teuthology.run_tasks:Running task vip... 2023-12-08T22:52:48.929 INFO:tasks.vip:Allocating static IPs for each host... 2023-12-08T22:52:48.930 INFO:tasks.vip:peername 172.21.15.40 2023-12-08T22:52:48.935 INFO:tasks.vip:172.21.15.40 in 172.21.0.0/20, pos 3879 2023-12-08T22:52:48.943 INFO:tasks.vip:smithi040.front.sepia.ceph.com static 10.0.15.40, vnet 10.0.0.0/16 2023-12-08T22:52:48.943 INFO:tasks.vip:VIPs are {map(str, vips)} 2023-12-08T22:52:48.944 DEBUG:teuthology.orchestra.run.smithi040:> sudo ip route ls 2023-12-08T22:52:48.958 INFO:teuthology.orchestra.run.smithi040.stdout:default via 172.21.15.254 dev ens1f0 2023-12-08T22:52:48.958 INFO:teuthology.orchestra.run.smithi040.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2023-12-08T22:52:48.958 INFO:teuthology.orchestra.run.smithi040.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.40 2023-12-08T22:52:48.960 INFO:tasks.vip:Configuring 10.0.15.40 on smithi040.front.sepia.ceph.com iface ens1f0... 2023-12-08T22:52:48.960 DEBUG:teuthology.orchestra.run.smithi040:> sudo ip addr add 10.0.15.40/16 dev ens1f0 2023-12-08T22:52:49.020 INFO:tasks.vip:peername 172.21.15.149 2023-12-08T22:52:49.023 INFO:tasks.vip:172.21.15.149 in 172.21.0.0/20, pos 3988 2023-12-08T22:52:49.027 INFO:tasks.vip:smithi149.front.sepia.ceph.com static 10.0.15.149, vnet 10.0.0.0/16 2023-12-08T22:52:49.029 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip route ls 2023-12-08T22:52:49.046 INFO:teuthology.orchestra.run.smithi149.stdout:default via 172.21.15.254 dev enp3s0f1 2023-12-08T22:52:49.047 INFO:teuthology.orchestra.run.smithi149.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.149 metric 100 2023-12-08T22:52:49.047 INFO:teuthology.orchestra.run.smithi149.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2023-12-08T22:52:49.047 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.149 2023-12-08T22:52:49.047 INFO:teuthology.orchestra.run.smithi149.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.149 metric 100 2023-12-08T22:52:49.048 INFO:tasks.vip:Configuring 10.0.15.149 on smithi149.front.sepia.ceph.com iface enp3s0f1... 2023-12-08T22:52:49.048 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr add 10.0.15.149/16 dev enp3s0f1 2023-12-08T22:52:49.105 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-08T22:52:49.115 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T22:52:49.115 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2023-12-08T22:52:49.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:49 smithi040 bash[24841]: audit 2023-12-08T22:52:48.138053+0000 mgr.smithi040.evuiyl (mgr.14180) 256 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:49.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:49 smithi040 bash[24841]: cluster 2023-12-08T22:52:48.290953+0000 mgr.smithi040.evuiyl (mgr.14180) 257 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:49.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:49 smithi149 bash[28710]: audit 2023-12-08T22:52:48.138053+0000 mgr.smithi040.evuiyl (mgr.14180) 256 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:49 smithi149 bash[28710]: cluster 2023-12-08T22:52:48.290953+0000 mgr.smithi040.evuiyl (mgr.14180) 257 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:51.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:51 smithi149 bash[28710]: cluster 2023-12-08T22:52:50.291540+0000 mgr.smithi040.evuiyl (mgr.14180) 258 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:51.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:51 smithi040 bash[24841]: cluster 2023-12-08T22:52:50.291540+0000 mgr.smithi040.evuiyl (mgr.14180) 258 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:52.255 INFO:teuthology.orchestra.run.smithi040.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-12-08T22:52:52.255 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT5330009J400BGN 372G 3m ago LVM detected, locked 2023-12-08T22:52:52.255 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme1n1 ssd Linux_44e525e342fc5df4ccb7 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme2n1 ssd Linux_36a6ef1b3b435515f6e8 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme3n1 ssd Linux_6e85ec72eecfe6b97e76 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi040 /dev/nvme4n1 ssd Linux_e3a88cde231ebcf4b8a6 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT623300CK400BGN 372G 3m ago LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme1n1 ssd Linux_30ace6ec8ed0f98af149 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme2n1 ssd Linux_3922da7460681edf4385 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme3n1 ssd Linux_feee61a29db38c88eb11 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:52.256 INFO:teuthology.orchestra.run.smithi040.stdout:smithi149 /dev/nvme4n1 ssd Linux_a96efb473f564fa54628 89.4G 3m ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-12-08T22:52:53.015 INFO:teuthology.run_tasks:Running task vip.exec... 2023-12-08T22:52:53.024 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T22:52:53.024 DEBUG:teuthology.orchestra.run.smithi040:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-12-08T22:52:53.038 INFO:teuthology.orchestra.run.smithi040.stderr:+ systemctl stop nfs-server 2023-12-08T22:52:53.182 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi149.front.sepia.ceph.com 2023-12-08T22:52:53.182 DEBUG:teuthology.orchestra.run.smithi149:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-12-08T22:52:53.201 INFO:teuthology.orchestra.run.smithi149.stderr:+ systemctl stop nfs-server 2023-12-08T22:52:53.326 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-12-08T22:52:53.335 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T22:52:53.336 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- bash -c 'ceph fs volume create foofs' 2023-12-08T22:52:53.349 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:53 smithi040 bash[24841]: audit 2023-12-08T22:52:52.244074+0000 mgr.smithi040.evuiyl (mgr.14180) 259 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:53.349 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:53 smithi040 bash[24841]: audit 2023-12-08T22:52:52.284705+0000 mon.smithi040 (mon.0) 623 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:52:53.349 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:53 smithi040 bash[24841]: cluster 2023-12-08T22:52:52.291999+0000 mgr.smithi040.evuiyl (mgr.14180) 260 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:53.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:53 smithi149 bash[28710]: audit 2023-12-08T22:52:52.244074+0000 mgr.smithi040.evuiyl (mgr.14180) 259 : audit [DBG] from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:53.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:53 smithi149 bash[28710]: audit 2023-12-08T22:52:52.284705+0000 mon.smithi040 (mon.0) 623 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:52:53.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:53 smithi149 bash[28710]: cluster 2023-12-08T22:52:52.291999+0000 mgr.smithi040.evuiyl (mgr.14180) 260 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:55 smithi040 bash[24841]: cluster 2023-12-08T22:52:54.292500+0000 mgr.smithi040.evuiyl (mgr.14180) 261 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:55 smithi149 bash[28710]: cluster 2023-12-08T22:52:54.292500+0000 mgr.smithi040.evuiyl (mgr.14180) 261 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:57.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:57 smithi040 bash[24841]: cluster 2023-12-08T22:52:56.293043+0000 mgr.smithi040.evuiyl (mgr.14180) 262 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:57.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:57 smithi040 bash[24841]: audit 2023-12-08T22:52:56.381723+0000 mgr.smithi040.evuiyl (mgr.14180) 263 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "fs volume create", "name": "foofs", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:57.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:57 smithi040 bash[24841]: audit 2023-12-08T22:52:56.382808+0000 mon.smithi040 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "pool": "cephfs.foofs.meta"}]: dispatch 2023-12-08T22:52:57.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:57 smithi149 bash[28710]: cluster 2023-12-08T22:52:56.293043+0000 mgr.smithi040.evuiyl (mgr.14180) 262 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:57.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:57 smithi149 bash[28710]: audit 2023-12-08T22:52:56.381723+0000 mgr.smithi040.evuiyl (mgr.14180) 263 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "fs volume create", "name": "foofs", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:52:57.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:57 smithi149 bash[28710]: audit 2023-12-08T22:52:56.382808+0000 mon.smithi040 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "pool": "cephfs.foofs.meta"}]: dispatch 2023-12-08T22:52:58.656 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:58 smithi040 bash[24841]: audit 2023-12-08T22:52:57.361938+0000 mon.smithi040 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "pool": "cephfs.foofs.meta"}]': finished 2023-12-08T22:52:58.657 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:58 smithi040 bash[24841]: cluster 2023-12-08T22:52:57.361998+0000 mon.smithi040 (mon.0) 626 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-12-08T22:52:58.657 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:58 smithi040 bash[24841]: audit 2023-12-08T22:52:57.363690+0000 mon.smithi040 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"bulk": true, "prefix": "osd pool create", "pool": "cephfs.foofs.data"}]: dispatch 2023-12-08T22:52:58.657 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:58 smithi040 bash[24841]: audit 2023-12-08T22:52:57.831042+0000 mon.smithi040 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:52:58.657 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:58 smithi040 bash[24841]: debug 2023-12-08T22:52:58.396+0000 7f074aaca700 -1 log_channel(cluster) log [ERR] : Health check failed: 1 filesystem is offline (MDS_ALL_DOWN) 2023-12-08T22:52:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:58 smithi149 bash[28710]: audit 2023-12-08T22:52:57.361938+0000 mon.smithi040 (mon.0) 625 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "pool": "cephfs.foofs.meta"}]': finished 2023-12-08T22:52:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:58 smithi149 bash[28710]: cluster 2023-12-08T22:52:57.361998+0000 mon.smithi040 (mon.0) 626 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-12-08T22:52:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:58 smithi149 bash[28710]: audit 2023-12-08T22:52:57.363690+0000 mon.smithi040 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"bulk": true, "prefix": "osd pool create", "pool": "cephfs.foofs.data"}]: dispatch 2023-12-08T22:52:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:58 smithi149 bash[28710]: audit 2023-12-08T22:52:57.831042+0000 mon.smithi040 (mon.0) 628 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:52:59.191 INFO:teuthology.run_tasks:Running task cephadm.apply... 2023-12-08T22:52:59.206 INFO:tasks.cephadm:Applying spec(s): placement: count: 2 service_id: foo service_type: nfs spec: port: 12049 --- service_id: nfs.foo service_type: ingress spec: backend_service: nfs.foo frontend_port: 2049 monitor_port: 9002 virtual_ip: '10.0.31.40/16' 2023-12-08T22:52:59.207 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch apply -i - 2023-12-08T22:52:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.293500+0000 mgr.smithi040.evuiyl (mgr.14180) 264 : cluster [DBG] pgmap v241: 33 pgs: 2 creating+peering, 1 active+clean, 30 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: audit 2023-12-08T22:52:58.371378+0000 mon.smithi040 (mon.0) 629 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"bulk": true, "prefix": "osd pool create", "pool": "cephfs.foofs.data"}]': finished 2023-12-08T22:52:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.371657+0000 mon.smithi040 (mon.0) 630 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-12-08T22:52:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: audit 2023-12-08T22:52:58.399203+0000 mon.smithi040 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "fs new", "fs_name": "foofs", "metadata": "cephfs.foofs.meta", "data": "cephfs.foofs.data"}]: dispatch 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.399993+0000 mon.smithi040 (mon.0) 632 : cluster [ERR] Health check failed: 1 filesystem is offline (MDS_ALL_DOWN) 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.400023+0000 mon.smithi040 (mon.0) 633 : cluster [WRN] Health check failed: 1 filesystem is online with fewer MDS than max_mds (MDS_UP_LESS_THAN_MAX) 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.407937+0000 mon.smithi040 (mon.0) 634 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: audit 2023-12-08T22:52:58.408104+0000 mon.smithi040 (mon.0) 635 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "fs new", "fs_name": "foofs", "metadata": "cephfs.foofs.meta", "data": "cephfs.foofs.data"}]': finished 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cluster 2023-12-08T22:52:58.408242+0000 mon.smithi040 (mon.0) 636 : cluster [DBG] fsmap foofs:0 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: cephadm 2023-12-08T22:52:58.413536+0000 mgr.smithi040.evuiyl (mgr.14180) 265 : cephadm [INF] Saving service mds.foofs spec with placement count:2 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: audit 2023-12-08T22:52:58.421259+0000 mon.smithi040 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:52:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:52:59 smithi040 bash[24841]: audit 2023-12-08T22:52:59.108351+0000 mon.smithi040 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.293500+0000 mgr.smithi040.evuiyl (mgr.14180) 264 : cluster [DBG] pgmap v241: 33 pgs: 2 creating+peering, 1 active+clean, 30 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: audit 2023-12-08T22:52:58.371378+0000 mon.smithi040 (mon.0) 629 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"bulk": true, "prefix": "osd pool create", "pool": "cephfs.foofs.data"}]': finished 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.371657+0000 mon.smithi040 (mon.0) 630 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: audit 2023-12-08T22:52:58.399203+0000 mon.smithi040 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "fs new", "fs_name": "foofs", "metadata": "cephfs.foofs.meta", "data": "cephfs.foofs.data"}]: dispatch 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.399993+0000 mon.smithi040 (mon.0) 632 : cluster [ERR] Health check failed: 1 filesystem is offline (MDS_ALL_DOWN) 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.400023+0000 mon.smithi040 (mon.0) 633 : cluster [WRN] Health check failed: 1 filesystem is online with fewer MDS than max_mds (MDS_UP_LESS_THAN_MAX) 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.407937+0000 mon.smithi040 (mon.0) 634 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: audit 2023-12-08T22:52:58.408104+0000 mon.smithi040 (mon.0) 635 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "fs new", "fs_name": "foofs", "metadata": "cephfs.foofs.meta", "data": "cephfs.foofs.data"}]': finished 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cluster 2023-12-08T22:52:58.408242+0000 mon.smithi040 (mon.0) 636 : cluster [DBG] fsmap foofs:0 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: cephadm 2023-12-08T22:52:58.413536+0000 mgr.smithi040.evuiyl (mgr.14180) 265 : cephadm [INF] Saving service mds.foofs spec with placement count:2 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: audit 2023-12-08T22:52:58.421259+0000 mon.smithi040 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:52:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:52:59 smithi149 bash[28710]: audit 2023-12-08T22:52:59.108351+0000 mon.smithi040 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:00.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:00 smithi040 bash[24841]: cluster 2023-12-08T22:52:59.411865+0000 mon.smithi040 (mon.0) 639 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-12-08T22:53:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:00 smithi149 bash[28710]: cluster 2023-12-08T22:52:59.411865+0000 mon.smithi040 (mon.0) 639 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-12-08T22:53:01.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:01 smithi149 bash[28710]: cluster 2023-12-08T22:53:00.294225+0000 mgr.smithi040.evuiyl (mgr.14180) 266 : cluster [DBG] pgmap v245: 65 pgs: 5 creating+activating, 6 creating+peering, 24 active+clean, 30 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:01.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:01 smithi040 bash[24841]: cluster 2023-12-08T22:53:00.294225+0000 mgr.smithi040.evuiyl (mgr.14180) 266 : cluster [DBG] pgmap v245: 65 pgs: 5 creating+activating, 6 creating+peering, 24 active+clean, 30 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:02.389 INFO:teuthology.orchestra.run.smithi040.stdout:Scheduled nfs.foo update... 2023-12-08T22:53:02.390 INFO:teuthology.orchestra.run.smithi040.stdout:Scheduled ingress.nfs.foo update... 2023-12-08T22:53:03.180 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-12-08T22:53:03.193 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2023-12-08T22:53:03.193 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: cluster 2023-12-08T22:53:02.294748+0000 mgr.smithi040.evuiyl (mgr.14180) 267 : cluster [DBG] pgmap v246: 65 pgs: 5 creating+activating, 6 creating+peering, 44 active+clean, 10 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: audit 2023-12-08T22:53:02.369604+0000 mgr.smithi040.evuiyl (mgr.14180) 268 : audit [DBG] from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:53:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: cephadm 2023-12-08T22:53:02.374820+0000 mgr.smithi040.evuiyl (mgr.14180) 269 : cephadm [INF] Saving service nfs.foo spec with placement count:2 2023-12-08T22:53:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: audit 2023-12-08T22:53:02.378736+0000 mon.smithi040 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: cephadm 2023-12-08T22:53:02.379301+0000 mgr.smithi040.evuiyl (mgr.14180) 270 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-12-08T22:53:03.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: audit 2023-12-08T22:53:02.385311+0000 mon.smithi040 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:03.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:03 smithi040 bash[24841]: audit 2023-12-08T22:53:02.420662+0000 mon.smithi040 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:03.646 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: cluster 2023-12-08T22:53:02.294748+0000 mgr.smithi040.evuiyl (mgr.14180) 267 : cluster [DBG] pgmap v246: 65 pgs: 5 creating+activating, 6 creating+peering, 44 active+clean, 10 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:03.646 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: audit 2023-12-08T22:53:02.369604+0000 mgr.smithi040.evuiyl (mgr.14180) 268 : audit [DBG] from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2023-12-08T22:53:03.646 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: cephadm 2023-12-08T22:53:02.374820+0000 mgr.smithi040.evuiyl (mgr.14180) 269 : cephadm [INF] Saving service nfs.foo spec with placement count:2 2023-12-08T22:53:03.646 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: audit 2023-12-08T22:53:02.378736+0000 mon.smithi040 (mon.0) 640 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:03.647 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: cephadm 2023-12-08T22:53:02.379301+0000 mgr.smithi040.evuiyl (mgr.14180) 270 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-12-08T22:53:03.647 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: audit 2023-12-08T22:53:02.385311+0000 mon.smithi040 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:03.647 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:03 smithi149 bash[28710]: audit 2023-12-08T22:53:02.420662+0000 mon.smithi040 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:05.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:05 smithi040 bash[24841]: cluster 2023-12-08T22:53:04.295381+0000 mgr.smithi040.evuiyl (mgr.14180) 271 : cluster [DBG] pgmap v247: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:05.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:05 smithi149 bash[28710]: cluster 2023-12-08T22:53:04.295381+0000 mgr.smithi040.evuiyl (mgr.14180) 271 : cluster [DBG] pgmap v247: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:07.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:07 smithi149 bash[28710]: cluster 2023-12-08T22:53:06.296239+0000 mgr.smithi040.evuiyl (mgr.14180) 272 : cluster [DBG] pgmap v248: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:07.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:07 smithi040 bash[24841]: cluster 2023-12-08T22:53:06.296239+0000 mgr.smithi040.evuiyl (mgr.14180) 272 : cluster [DBG] pgmap v248: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:07.953 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:07.954 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:08.764 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:09.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:08 smithi040 bash[24841]: audit 2023-12-08T22:53:07.944754+0000 mgr.smithi040.evuiyl (mgr.14180) 273 : audit [DBG] from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:09.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:08 smithi040 bash[24841]: audit 2023-12-08T22:53:07.985483+0000 mon.smithi040 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:09.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:08 smithi040 bash[24841]: cluster 2023-12-08T22:53:08.296819+0000 mgr.smithi040.evuiyl (mgr.14180) 274 : cluster [DBG] pgmap v249: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:09.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:08 smithi149 bash[28710]: audit 2023-12-08T22:53:07.944754+0000 mgr.smithi040.evuiyl (mgr.14180) 273 : audit [DBG] from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:09.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:08 smithi149 bash[28710]: audit 2023-12-08T22:53:07.985483+0000 mon.smithi040 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:09.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:08 smithi149 bash[28710]: cluster 2023-12-08T22:53:08.296819+0000 mgr.smithi040.evuiyl (mgr.14180) 274 : cluster [DBG] pgmap v249: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:09.764 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:11.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: cluster 2023-12-08T22:53:10.297691+0000 mgr.smithi040.evuiyl (mgr.14180) 275 : cluster [DBG] pgmap v250: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:11.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:10.716640+0000 mon.smithi040 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.005844+0000 mon.smithi040 (mon.0) 645 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.007443+0000 mon.smithi040 (mon.0) 646 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.014812+0000 mon.smithi040 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.019949+0000 mon.smithi040 (mon.0) 648 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.033195+0000 mon.smithi040 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.034669+0000 mon.smithi040 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi149.djgwiz", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]: dispatch 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.038168+0000 mon.smithi040 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi149.djgwiz", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]': finished 2023-12-08T22:53:11.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:11 smithi040 bash[24841]: audit 2023-12-08T22:53:11.039285+0000 mon.smithi040 (mon.0) 652 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: cluster 2023-12-08T22:53:10.297691+0000 mgr.smithi040.evuiyl (mgr.14180) 275 : cluster [DBG] pgmap v250: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:10.716640+0000 mon.smithi040 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.005844+0000 mon.smithi040 (mon.0) 645 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.007443+0000 mon.smithi040 (mon.0) 646 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.014812+0000 mon.smithi040 (mon.0) 647 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.019949+0000 mon.smithi040 (mon.0) 648 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.033195+0000 mon.smithi040 (mon.0) 649 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:11.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.034669+0000 mon.smithi040 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi149.djgwiz", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]: dispatch 2023-12-08T22:53:11.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.038168+0000 mon.smithi040 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi149.djgwiz", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]': finished 2023-12-08T22:53:11.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:11 smithi149 bash[28710]: audit 2023-12-08T22:53:11.039285+0000 mon.smithi040 (mon.0) 652 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:12.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:12 smithi149 bash[28710]: cephadm 2023-12-08T22:53:11.040197+0000 mgr.smithi040.evuiyl (mgr.14180) 276 : cephadm [INF] Deploying daemon mds.foofs.smithi149.djgwiz on smithi149 2023-12-08T22:53:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:12 smithi040 bash[24841]: cephadm 2023-12-08T22:53:11.040197+0000 mgr.smithi040.evuiyl (mgr.14180) 276 : cephadm [INF] Deploying daemon mds.foofs.smithi149.djgwiz on smithi149 2023-12-08T22:53:12.863 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:12.863 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:13.422 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:13 smithi149 bash[28710]: cluster 2023-12-08T22:53:12.298533+0000 mgr.smithi040.evuiyl (mgr.14180) 277 : cluster [DBG] pgmap v251: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:13.596 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:13.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:13 smithi040 bash[24841]: cluster 2023-12-08T22:53:12.298533+0000 mgr.smithi040.evuiyl (mgr.14180) 277 : cluster [DBG] pgmap v251: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:14.597 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:14.683 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:14 smithi149 bash[28710]: audit 2023-12-08T22:53:12.847901+0000 mgr.smithi040.evuiyl (mgr.14180) 278 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:14.684 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:14 smithi149 bash[28710]: audit 2023-12-08T22:53:13.710923+0000 mon.smithi040 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:14.684 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:14 smithi149 bash[28710]: audit 2023-12-08T22:53:13.713404+0000 mon.smithi040 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi040.gbuccx", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]: dispatch 2023-12-08T22:53:14.684 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:14 smithi149 bash[28710]: audit 2023-12-08T22:53:13.717514+0000 mon.smithi040 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi040.gbuccx", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]': finished 2023-12-08T22:53:14.684 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:14 smithi149 bash[28710]: audit 2023-12-08T22:53:13.719045+0000 mon.smithi040 (mon.0) 656 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:14.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:14 smithi040 bash[24841]: audit 2023-12-08T22:53:12.847901+0000 mgr.smithi040.evuiyl (mgr.14180) 278 : audit [DBG] from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:14.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:14 smithi040 bash[24841]: audit 2023-12-08T22:53:13.710923+0000 mon.smithi040 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:14.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:14 smithi040 bash[24841]: audit 2023-12-08T22:53:13.713404+0000 mon.smithi040 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi040.gbuccx", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]: dispatch 2023-12-08T22:53:14.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:14 smithi040 bash[24841]: audit 2023-12-08T22:53:13.717514+0000 mon.smithi040 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "mds.foofs.smithi040.gbuccx", "caps": ["mon", "profile mds", "osd", "allow rw tag cephfs *=*", "mds", "allow"]}]': finished 2023-12-08T22:53:14.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:14 smithi040 bash[24841]: audit 2023-12-08T22:53:13.719045+0000 mon.smithi040 (mon.0) 656 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:15.708 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:15 smithi040 bash[24841]: cephadm 2023-12-08T22:53:13.720331+0000 mgr.smithi040.evuiyl (mgr.14180) 279 : cephadm [INF] Deploying daemon mds.foofs.smithi040.gbuccx on smithi040 2023-12-08T22:53:15.708 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:15 smithi040 bash[24841]: cluster 2023-12-08T22:53:14.299261+0000 mgr.smithi040.evuiyl (mgr.14180) 280 : cluster [DBG] pgmap v252: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:15 smithi149 bash[28710]: cephadm 2023-12-08T22:53:13.720331+0000 mgr.smithi040.evuiyl (mgr.14180) 279 : cephadm [INF] Deploying daemon mds.foofs.smithi040.gbuccx on smithi040 2023-12-08T22:53:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:15 smithi149 bash[28710]: cluster 2023-12-08T22:53:14.299261+0000 mgr.smithi040.evuiyl (mgr.14180) 280 : cluster [DBG] pgmap v252: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373023+0000 mon.smithi040 (mon.0) 657 : cluster [DBG] mds.? [v2:172.21.15.149:6832/1669135248,v1:172.21.15.149:6833/1669135248] up:boot 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373126+0000 mon.smithi040 (mon.0) 658 : cluster [INF] daemon mds.foofs.smithi149.djgwiz assigned to filesystem foofs as rank 0 (now has 1 ranks) 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373247+0000 mon.smithi040 (mon.0) 659 : cluster [INF] Health check cleared: MDS_ALL_DOWN (was: 1 filesystem is offline) 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373292+0000 mon.smithi040 (mon.0) 660 : cluster [INF] Health check cleared: MDS_UP_LESS_THAN_MAX (was: 1 filesystem is online with fewer MDS than max_mds) 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373322+0000 mon.smithi040 (mon.0) 661 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.373592+0000 mon.smithi040 (mon.0) 662 : cluster [DBG] fsmap foofs:0 1 up:standby 2023-12-08T22:53:16.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: audit 2023-12-08T22:53:15.373723+0000 mon.smithi040 (mon.0) 663 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata", "who": "foofs.smithi149.djgwiz"}]: dispatch 2023-12-08T22:53:16.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.376473+0000 mon.smithi040 (mon.0) 664 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:creating} 2023-12-08T22:53:16.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:16 smithi040 bash[24841]: cluster 2023-12-08T22:53:15.398213+0000 mon.smithi040 (mon.0) 665 : cluster [INF] daemon mds.foofs.smithi149.djgwiz is now active in filesystem foofs as rank 0 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373023+0000 mon.smithi040 (mon.0) 657 : cluster [DBG] mds.? [v2:172.21.15.149:6832/1669135248,v1:172.21.15.149:6833/1669135248] up:boot 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373126+0000 mon.smithi040 (mon.0) 658 : cluster [INF] daemon mds.foofs.smithi149.djgwiz assigned to filesystem foofs as rank 0 (now has 1 ranks) 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373247+0000 mon.smithi040 (mon.0) 659 : cluster [INF] Health check cleared: MDS_ALL_DOWN (was: 1 filesystem is offline) 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373292+0000 mon.smithi040 (mon.0) 660 : cluster [INF] Health check cleared: MDS_UP_LESS_THAN_MAX (was: 1 filesystem is online with fewer MDS than max_mds) 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373322+0000 mon.smithi040 (mon.0) 661 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.373592+0000 mon.smithi040 (mon.0) 662 : cluster [DBG] fsmap foofs:0 1 up:standby 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: audit 2023-12-08T22:53:15.373723+0000 mon.smithi040 (mon.0) 663 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata", "who": "foofs.smithi149.djgwiz"}]: dispatch 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.376473+0000 mon.smithi040 (mon.0) 664 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:creating} 2023-12-08T22:53:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:16 smithi149 bash[28710]: cluster 2023-12-08T22:53:15.398213+0000 mon.smithi040 (mon.0) 665 : cluster [INF] daemon mds.foofs.smithi149.djgwiz is now active in filesystem foofs as rank 0 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: cluster 2023-12-08T22:53:16.299942+0000 mgr.smithi040.evuiyl (mgr.14180) 281 : cluster [DBG] pgmap v253: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: cluster 2023-12-08T22:53:16.388831+0000 mon.smithi040 (mon.0) 666 : cluster [DBG] mds.? [v2:172.21.15.149:6832/1669135248,v1:172.21.15.149:6833/1669135248] up:active 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: cluster 2023-12-08T22:53:16.388878+0000 mon.smithi040 (mon.0) 667 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: audit 2023-12-08T22:53:17.343020+0000 mon.smithi040 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: audit 2023-12-08T22:53:17.351333+0000 mon.smithi040 (mon.0) 669 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:18.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:17 smithi040 bash[24841]: audit 2023-12-08T22:53:17.381463+0000 mon.smithi040 (mon.0) 670 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: cluster 2023-12-08T22:53:16.299942+0000 mgr.smithi040.evuiyl (mgr.14180) 281 : cluster [DBG] pgmap v253: 65 pgs: 65 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: cluster 2023-12-08T22:53:16.388831+0000 mon.smithi040 (mon.0) 666 : cluster [DBG] mds.? [v2:172.21.15.149:6832/1669135248,v1:172.21.15.149:6833/1669135248] up:active 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: cluster 2023-12-08T22:53:16.388878+0000 mon.smithi040 (mon.0) 667 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: audit 2023-12-08T22:53:17.343020+0000 mon.smithi040 (mon.0) 668 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: audit 2023-12-08T22:53:17.351333+0000 mon.smithi040 (mon.0) 669 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:18.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:17 smithi149 bash[28710]: audit 2023-12-08T22:53:17.381463+0000 mon.smithi040 (mon.0) 670 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-12-08T22:53:19.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:18 smithi040 bash[24841]: audit 2023-12-08T22:53:17.846338+0000 mon.smithi040 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:19.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:18 smithi040 bash[24841]: cluster 2023-12-08T22:53:18.300674+0000 mgr.smithi040.evuiyl (mgr.14180) 282 : cluster [DBG] pgmap v254: 65 pgs: 65 active+clean; 2.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s wr, 7 op/s 2023-12-08T22:53:19.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:18 smithi040 bash[24841]: audit 2023-12-08T22:53:18.354656+0000 mon.smithi040 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-12-08T22:53:19.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:18 smithi040 bash[24841]: cluster 2023-12-08T22:53:18.354724+0000 mon.smithi040 (mon.0) 673 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-12-08T22:53:19.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:18 smithi040 bash[24841]: audit 2023-12-08T22:53:18.356667+0000 mon.smithi040 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-12-08T22:53:19.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:18 smithi149 bash[28710]: audit 2023-12-08T22:53:17.846338+0000 mon.smithi040 (mon.0) 671 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:19.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:18 smithi149 bash[28710]: cluster 2023-12-08T22:53:18.300674+0000 mgr.smithi040.evuiyl (mgr.14180) 282 : cluster [DBG] pgmap v254: 65 pgs: 65 active+clean; 2.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s wr, 7 op/s 2023-12-08T22:53:19.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:18 smithi149 bash[28710]: audit 2023-12-08T22:53:18.354656+0000 mon.smithi040 (mon.0) 672 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-12-08T22:53:19.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:18 smithi149 bash[28710]: cluster 2023-12-08T22:53:18.354724+0000 mon.smithi040 (mon.0) 673 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-12-08T22:53:19.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:18 smithi149 bash[28710]: audit 2023-12-08T22:53:18.356667+0000 mon.smithi040 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-12-08T22:53:19.338 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:19.338 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:20.501 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:20.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.324332+0000 mgr.smithi040.evuiyl (mgr.14180) 283 : audit [DBG] from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.361116+0000 mon.smithi040 (mon.0) 675 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cluster 2023-12-08T22:53:19.361617+0000 mon.smithi040 (mon.0) 676 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cephadm 2023-12-08T22:53:19.364786+0000 mgr.smithi040.evuiyl (mgr.14180) 284 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi040.sbtbel 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.365919+0000 mon.smithi040 (mon.0) 677 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.372509+0000 mon.smithi040 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cephadm 2023-12-08T22:53:19.377561+0000 mgr.smithi040.evuiyl (mgr.14180) 285 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.378905+0000 mon.smithi040 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.384097+0000 mon.smithi040 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.391286+0000 mon.smithi040 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.392812+0000 mon.smithi040 (mon.0) 682 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.453222+0000 mon.smithi040 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-08T22:53:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.458932+0000 mon.smithi040 (mon.0) 684 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.579624+0000 mon.smithi040 (mon.0) 685 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.586120+0000 mon.smithi040 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.592984+0000 mon.smithi040 (mon.0) 687 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cluster 2023-12-08T22:53:19.859126+0000 mon.smithi040 (mon.0) 688 : cluster [DBG] mds.? [v2:172.21.15.40:6834/2481730972,v1:172.21.15.40:6835/2481730972] up:boot 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cluster 2023-12-08T22:53:19.859669+0000 mon.smithi040 (mon.0) 689 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 1 up:standby 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: audit 2023-12-08T22:53:19.860629+0000 mon.smithi040 (mon.0) 690 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata", "who": "foofs.smithi040.gbuccx"}]: dispatch 2023-12-08T22:53:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:20 smithi040 bash[24841]: cluster 2023-12-08T22:53:19.864720+0000 mon.smithi040 (mon.0) 691 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 1 up:standby 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.324332+0000 mgr.smithi040.evuiyl (mgr.14180) 283 : audit [DBG] from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.361116+0000 mon.smithi040 (mon.0) 675 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cluster 2023-12-08T22:53:19.361617+0000 mon.smithi040 (mon.0) 676 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cephadm 2023-12-08T22:53:19.364786+0000 mgr.smithi040.evuiyl (mgr.14180) 284 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi040.sbtbel 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.365919+0000 mon.smithi040 (mon.0) 677 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.372509+0000 mon.smithi040 (mon.0) 678 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cephadm 2023-12-08T22:53:19.377561+0000 mgr.smithi040.evuiyl (mgr.14180) 285 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-12-08T22:53:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.378905+0000 mon.smithi040 (mon.0) 679 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.384097+0000 mon.smithi040 (mon.0) 680 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.391286+0000 mon.smithi040 (mon.0) 681 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.392812+0000 mon.smithi040 (mon.0) 682 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.453222+0000 mon.smithi040 (mon.0) 683 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.458932+0000 mon.smithi040 (mon.0) 684 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.579624+0000 mon.smithi040 (mon.0) 685 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.586120+0000 mon.smithi040 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi040.sbtbel-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.592984+0000 mon.smithi040 (mon.0) 687 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cluster 2023-12-08T22:53:19.859126+0000 mon.smithi040 (mon.0) 688 : cluster [DBG] mds.? [v2:172.21.15.40:6834/2481730972,v1:172.21.15.40:6835/2481730972] up:boot 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cluster 2023-12-08T22:53:19.859669+0000 mon.smithi040 (mon.0) 689 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 1 up:standby 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: audit 2023-12-08T22:53:19.860629+0000 mon.smithi040 (mon.0) 690 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "mds metadata", "who": "foofs.smithi040.gbuccx"}]: dispatch 2023-12-08T22:53:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:20 smithi149 bash[28710]: cluster 2023-12-08T22:53:19.864720+0000 mon.smithi040 (mon.0) 691 : cluster [DBG] fsmap foofs:1 {0=foofs.smithi149.djgwiz=up:active} 1 up:standby 2023-12-08T22:53:21.502 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:21 smithi040 bash[24841]: cephadm 2023-12-08T22:53:19.516392+0000 mgr.smithi040.evuiyl (mgr.14180) 286 : cephadm [INF] Creating rados config object: conf-nfs.foo 2023-12-08T22:53:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:21 smithi040 bash[24841]: cephadm 2023-12-08T22:53:19.579047+0000 mgr.smithi040.evuiyl (mgr.14180) 287 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi040.sbtbel-rgw 2023-12-08T22:53:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:21 smithi040 bash[24841]: cephadm 2023-12-08T22:53:19.594182+0000 mgr.smithi040.evuiyl (mgr.14180) 288 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi040.sbtbel on smithi040 2023-12-08T22:53:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:21 smithi040 bash[24841]: cluster 2023-12-08T22:53:20.301757+0000 mgr.smithi040.evuiyl (mgr.14180) 289 : cluster [DBG] pgmap v257: 97 pgs: 8 creating+peering, 18 unknown, 71 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s wr, 9 op/s 2023-12-08T22:53:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:21 smithi040 bash[24841]: cluster 2023-12-08T22:53:20.360212+0000 mon.smithi040 (mon.0) 692 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-12-08T22:53:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:21 smithi149 bash[28710]: cephadm 2023-12-08T22:53:19.516392+0000 mgr.smithi040.evuiyl (mgr.14180) 286 : cephadm [INF] Creating rados config object: conf-nfs.foo 2023-12-08T22:53:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:21 smithi149 bash[28710]: cephadm 2023-12-08T22:53:19.579047+0000 mgr.smithi040.evuiyl (mgr.14180) 287 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi040.sbtbel-rgw 2023-12-08T22:53:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:21 smithi149 bash[28710]: cephadm 2023-12-08T22:53:19.594182+0000 mgr.smithi040.evuiyl (mgr.14180) 288 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi040.sbtbel on smithi040 2023-12-08T22:53:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:21 smithi149 bash[28710]: cluster 2023-12-08T22:53:20.301757+0000 mgr.smithi040.evuiyl (mgr.14180) 289 : cluster [DBG] pgmap v257: 97 pgs: 8 creating+peering, 18 unknown, 71 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s wr, 9 op/s 2023-12-08T22:53:21.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:21 smithi149 bash[28710]: cluster 2023-12-08T22:53:20.360212+0000 mon.smithi040 (mon.0) 692 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-12-08T22:53:23.702 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: cluster 2023-12-08T22:53:22.302684+0000 mgr.smithi040.evuiyl (mgr.14180) 290 : cluster [DBG] pgmap v259: 97 pgs: 8 creating+peering, 10 unknown, 79 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s wr, 6 op/s 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.429166+0000 mon.smithi040 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.431368+0000 mon.smithi040 (mon.0) 694 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.435340+0000 mon.smithi040 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.437162+0000 mon.smithi040 (mon.0) 696 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.440963+0000 mon.smithi040 (mon.0) 697 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.442862+0000 mon.smithi040 (mon.0) 698 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.495819+0000 mon.smithi040 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.501797+0000 mon.smithi040 (mon.0) 700 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.557840+0000 mon.smithi040 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.562313+0000 mon.smithi040 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-08T22:53:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:23 smithi040 bash[24841]: audit 2023-12-08T22:53:22.563993+0000 mon.smithi040 (mon.0) 703 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: cluster 2023-12-08T22:53:22.302684+0000 mgr.smithi040.evuiyl (mgr.14180) 290 : cluster [DBG] pgmap v259: 97 pgs: 8 creating+peering, 10 unknown, 79 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s wr, 6 op/s 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.429166+0000 mon.smithi040 (mon.0) 693 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.431368+0000 mon.smithi040 (mon.0) 694 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.435340+0000 mon.smithi040 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.437162+0000 mon.smithi040 (mon.0) 696 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.440963+0000 mon.smithi040 (mon.0) 697 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.442862+0000 mon.smithi040 (mon.0) 698 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:23.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.495819+0000 mon.smithi040 (mon.0) 699 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-12-08T22:53:23.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.501797+0000 mon.smithi040 (mon.0) 700 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-12-08T22:53:23.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.557840+0000 mon.smithi040 (mon.0) 701 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-12-08T22:53:23.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.562313+0000 mon.smithi040 (mon.0) 702 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.1.0.smithi149.umtvkr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-12-08T22:53:23.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:23 smithi149 bash[28710]: audit 2023-12-08T22:53:22.563993+0000 mon.smithi040 (mon.0) 703 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:24 smithi040 bash[24841]: cephadm 2023-12-08T22:53:22.431041+0000 mgr.smithi040.evuiyl (mgr.14180) 291 : cephadm [INF] Creating key for client.nfs.foo.1.0.smithi149.umtvkr 2023-12-08T22:53:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:24 smithi040 bash[24841]: cephadm 2023-12-08T22:53:22.436617+0000 mgr.smithi040.evuiyl (mgr.14180) 292 : cephadm [INF] Ensuring nfs.foo.1 is in the ganesha grace table 2023-12-08T22:53:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:24 smithi040 bash[24841]: cephadm 2023-12-08T22:53:22.557261+0000 mgr.smithi040.evuiyl (mgr.14180) 293 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-12-08T22:53:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:24 smithi040 bash[24841]: cephadm 2023-12-08T22:53:22.557383+0000 mgr.smithi040.evuiyl (mgr.14180) 294 : cephadm [INF] Creating key for client.nfs.foo.1.0.smithi149.umtvkr-rgw 2023-12-08T22:53:24.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:24 smithi040 bash[24841]: cephadm 2023-12-08T22:53:22.564937+0000 mgr.smithi040.evuiyl (mgr.14180) 295 : cephadm [INF] Deploying daemon nfs.foo.1.0.smithi149.umtvkr on smithi149 2023-12-08T22:53:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:24 smithi149 bash[28710]: cephadm 2023-12-08T22:53:22.431041+0000 mgr.smithi040.evuiyl (mgr.14180) 291 : cephadm [INF] Creating key for client.nfs.foo.1.0.smithi149.umtvkr 2023-12-08T22:53:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:24 smithi149 bash[28710]: cephadm 2023-12-08T22:53:22.436617+0000 mgr.smithi040.evuiyl (mgr.14180) 292 : cephadm [INF] Ensuring nfs.foo.1 is in the ganesha grace table 2023-12-08T22:53:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:24 smithi149 bash[28710]: cephadm 2023-12-08T22:53:22.557261+0000 mgr.smithi040.evuiyl (mgr.14180) 293 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-12-08T22:53:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:24 smithi149 bash[28710]: cephadm 2023-12-08T22:53:22.557383+0000 mgr.smithi040.evuiyl (mgr.14180) 294 : cephadm [INF] Creating key for client.nfs.foo.1.0.smithi149.umtvkr-rgw 2023-12-08T22:53:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:24 smithi149 bash[28710]: cephadm 2023-12-08T22:53:22.564937+0000 mgr.smithi040.evuiyl (mgr.14180) 295 : cephadm [INF] Deploying daemon nfs.foo.1.0.smithi149.umtvkr on smithi149 2023-12-08T22:53:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:25 smithi040 bash[24841]: cluster 2023-12-08T22:53:24.303878+0000 mgr.smithi040.evuiyl (mgr.14180) 296 : cluster [DBG] pgmap v260: 97 pgs: 4 creating+peering, 93 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s rd, 1.5 KiB/s wr, 4 op/s 2023-12-08T22:53:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:25 smithi040 bash[24841]: audit 2023-12-08T22:53:25.169930+0000 mon.smithi040 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:25 smithi040 bash[24841]: audit 2023-12-08T22:53:25.182838+0000 mon.smithi040 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:25 smithi040 bash[24841]: cephadm 2023-12-08T22:53:25.199055+0000 mgr.smithi040.evuiyl (mgr.14180) 297 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.pibfer on smithi149 2023-12-08T22:53:25.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:25 smithi149 bash[28710]: cluster 2023-12-08T22:53:24.303878+0000 mgr.smithi040.evuiyl (mgr.14180) 296 : cluster [DBG] pgmap v260: 97 pgs: 4 creating+peering, 93 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s rd, 1.5 KiB/s wr, 4 op/s 2023-12-08T22:53:25.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:25 smithi149 bash[28710]: audit 2023-12-08T22:53:25.169930+0000 mon.smithi040 (mon.0) 704 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:25.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:25 smithi149 bash[28710]: audit 2023-12-08T22:53:25.182838+0000 mon.smithi040 (mon.0) 705 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:25.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:25 smithi149 bash[28710]: cephadm 2023-12-08T22:53:25.199055+0000 mgr.smithi040.evuiyl (mgr.14180) 297 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.pibfer on smithi149 2023-12-08T22:53:25.905 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:25.906 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:26.712 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:26 smithi040 bash[24841]: audit 2023-12-08T22:53:25.891858+0000 mgr.smithi040.evuiyl (mgr.14180) 298 : audit [DBG] from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:26.712 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:26 smithi040 bash[24841]: cluster 2023-12-08T22:53:26.304797+0000 mgr.smithi040.evuiyl (mgr.14180) 299 : cluster [DBG] pgmap v261: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 1.4 KiB/s wr, 5 op/s 2023-12-08T22:53:26.714 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:26.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:26 smithi149 bash[28710]: audit 2023-12-08T22:53:25.891858+0000 mgr.smithi040.evuiyl (mgr.14180) 298 : audit [DBG] from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:26.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:26 smithi149 bash[28710]: cluster 2023-12-08T22:53:26.304797+0000 mgr.smithi040.evuiyl (mgr.14180) 299 : cluster [DBG] pgmap v261: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 1.4 KiB/s wr, 5 op/s 2023-12-08T22:53:27.715 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:29.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:29 smithi040 bash[24841]: cluster 2023-12-08T22:53:28.305816+0000 mgr.smithi040.evuiyl (mgr.14180) 300 : cluster [DBG] pgmap v262: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1.1 KiB/s wr, 2 op/s 2023-12-08T22:53:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:29 smithi149 bash[28710]: cluster 2023-12-08T22:53:28.305816+0000 mgr.smithi040.evuiyl (mgr.14180) 300 : cluster [DBG] pgmap v262: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1.1 KiB/s wr, 2 op/s 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: cephadm 2023-12-08T22:53:29.407216+0000 mgr.smithi040.evuiyl (mgr.14180) 301 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: audit 2023-12-08T22:53:29.407378+0000 mon.smithi040 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: cephadm 2023-12-08T22:53:29.407676+0000 mgr.smithi040.evuiyl (mgr.14180) 302 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: audit 2023-12-08T22:53:29.408628+0000 mon.smithi040 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.pibfer"}]: dispatch 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: cephadm 2023-12-08T22:53:29.411527+0000 mgr.smithi040.evuiyl (mgr.14180) 303 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:30 smithi040 bash[24841]: cephadm 2023-12-08T22:53:29.414104+0000 mgr.smithi040.evuiyl (mgr.14180) 304 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.cexidw on smithi040 2023-12-08T22:53:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: cephadm 2023-12-08T22:53:29.407216+0000 mgr.smithi040.evuiyl (mgr.14180) 301 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: audit 2023-12-08T22:53:29.407378+0000 mon.smithi040 (mon.0) 706 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: cephadm 2023-12-08T22:53:29.407676+0000 mgr.smithi040.evuiyl (mgr.14180) 302 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: audit 2023-12-08T22:53:29.408628+0000 mon.smithi040 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.pibfer"}]: dispatch 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: cephadm 2023-12-08T22:53:29.411527+0000 mgr.smithi040.evuiyl (mgr.14180) 303 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pibfer ... 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:30.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:30 smithi149 bash[28710]: cephadm 2023-12-08T22:53:29.414104+0000 mgr.smithi040.evuiyl (mgr.14180) 304 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.cexidw on smithi040 2023-12-08T22:53:30.929 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:30.929 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-08T22:53:29.411361Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\nDeploy daemon haproxy.nfs.foo.smithi149.pibfer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:31 smithi040 bash[24841]: cluster 2023-12-08T22:53:30.307006+0000 mgr.smithi040.evuiyl (mgr.14180) 305 : cluster [DBG] pgmap v263: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.8 KiB/s wr, 5 op/s 2023-12-08T22:53:31.725 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:31.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:31 smithi149 bash[28710]: cluster 2023-12-08T22:53:30.307006+0000 mgr.smithi040.evuiyl (mgr.14180) 305 : cluster [DBG] pgmap v263: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.8 KiB/s wr, 5 op/s 2023-12-08T22:53:32.725 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:32.739 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:32 smithi040 bash[24841]: audit 2023-12-08T22:53:30.914609+0000 mgr.smithi040.evuiyl (mgr.14180) 306 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:32 smithi149 bash[28710]: audit 2023-12-08T22:53:30.914609+0000 mgr.smithi040.evuiyl (mgr.14180) 306 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:33.745 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:33 smithi040 bash[24841]: cluster 2023-12-08T22:53:32.307940+0000 mgr.smithi040.evuiyl (mgr.14180) 307 : cluster [DBG] pgmap v264: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.5 KiB/s wr, 4 op/s 2023-12-08T22:53:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:33 smithi149 bash[28710]: cluster 2023-12-08T22:53:32.307940+0000 mgr.smithi040.evuiyl (mgr.14180) 307 : cluster [DBG] pgmap v264: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.5 KiB/s wr, 4 op/s 2023-12-08T22:53:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:34 smithi040 bash[24841]: audit 2023-12-08T22:53:33.773373+0000 mon.smithi040 (mon.0) 708 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.cexidw"}]: dispatch 2023-12-08T22:53:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:34 smithi040 bash[24841]: audit 2023-12-08T22:53:33.781566+0000 mon.smithi040 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:34.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:34 smithi040 bash[24841]: audit 2023-12-08T22:53:33.786381+0000 mon.smithi040 (mon.0) 710 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:53:34.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:34 smithi149 bash[28710]: audit 2023-12-08T22:53:33.773373+0000 mon.smithi040 (mon.0) 708 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.cexidw"}]: dispatch 2023-12-08T22:53:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:34 smithi149 bash[28710]: audit 2023-12-08T22:53:33.781566+0000 mon.smithi040 (mon.0) 709 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:34 smithi149 bash[28710]: audit 2023-12-08T22:53:33.786381+0000 mon.smithi040 (mon.0) 710 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cephadm 2023-12-08T22:53:33.772306+0000 mgr.smithi040.evuiyl (mgr.14180) 308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cephadm 2023-12-08T22:53:33.772778+0000 mgr.smithi040.evuiyl (mgr.14180) 309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cephadm 2023-12-08T22:53:33.774629+0000 mgr.smithi040.evuiyl (mgr.14180) 310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.cexidw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cephadm 2023-12-08T22:53:33.782098+0000 mgr.smithi040.evuiyl (mgr.14180) 311 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.aakkek on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cephadm 2023-12-08T22:53:33.784880+0000 mgr.smithi040.evuiyl (mgr.14180) 312 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cluster 2023-12-08T22:53:33.786263+0000 mgr.smithi040.evuiyl (mgr.14180) 313 : cluster [DBG] pgmap v265: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1.6 KiB/s wr, 5 op/s 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: audit 2023-12-08T22:53:34.418808+0000 mon.smithi040 (mon.0) 711 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:35.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:35 smithi040 bash[24841]: cluster 2023-12-08T22:53:34.778909+0000 mon.smithi040 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cephadm 2023-12-08T22:53:33.772306+0000 mgr.smithi040.evuiyl (mgr.14180) 308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cephadm 2023-12-08T22:53:33.772778+0000 mgr.smithi040.evuiyl (mgr.14180) 309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cephadm 2023-12-08T22:53:33.774629+0000 mgr.smithi040.evuiyl (mgr.14180) 310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.cexidw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw 2023-12-08T22:53:35.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.cexidw ... 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cephadm 2023-12-08T22:53:33.782098+0000 mgr.smithi040.evuiyl (mgr.14180) 311 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.aakkek on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cephadm 2023-12-08T22:53:33.784880+0000 mgr.smithi040.evuiyl (mgr.14180) 312 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cluster 2023-12-08T22:53:33.786263+0000 mgr.smithi040.evuiyl (mgr.14180) 313 : cluster [DBG] pgmap v265: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1.6 KiB/s wr, 5 op/s 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: audit 2023-12-08T22:53:34.418808+0000 mon.smithi040 (mon.0) 711 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:35.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:35 smithi149 bash[28710]: cluster 2023-12-08T22:53:34.778909+0000 mon.smithi040 (mon.0) 712 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:53:36.021 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:36.021 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:57.724762Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-08T22:53:29.411361Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\nDeploy daemon haproxy.nfs.foo.smithi149.pibfer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.774451Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.cexidw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\nDeploy daemon haproxy.nfs.foo.smithi040.cexidw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.781935Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.aakkek on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:33.784738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "running": 0, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:57.725164Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:57.725488Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "ports": [12049], "running": 0, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:57.725745Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:57.725993Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:36.776 INFO:tasks.cephadm:nfs.foo has 0/2 2023-12-08T22:53:37.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:37 smithi040 bash[24841]: cluster 2023-12-08T22:53:35.787465+0000 mgr.smithi040.evuiyl (mgr.14180) 314 : cluster [DBG] pgmap v266: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1.6 KiB/s wr, 4 op/s 2023-12-08T22:53:37.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:37 smithi040 bash[24841]: audit 2023-12-08T22:53:36.007775+0000 mgr.smithi040.evuiyl (mgr.14180) 315 : audit [DBG] from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:37.778 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:37 smithi149 bash[28710]: cluster 2023-12-08T22:53:35.787465+0000 mgr.smithi040.evuiyl (mgr.14180) 314 : cluster [DBG] pgmap v266: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1.6 KiB/s wr, 4 op/s 2023-12-08T22:53:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:37 smithi149 bash[28710]: audit 2023-12-08T22:53:36.007775+0000 mgr.smithi040.evuiyl (mgr.14180) 315 : audit [DBG] from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:38 smithi040 bash[24841]: cluster 2023-12-08T22:53:37.788659+0000 mgr.smithi040.evuiyl (mgr.14180) 316 : cluster [DBG] pgmap v267: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 802 B/s wr, 3 op/s 2023-12-08T22:53:38.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:38 smithi149 bash[28710]: cluster 2023-12-08T22:53:37.788659+0000 mgr.smithi040.evuiyl (mgr.14180) 316 : cluster [DBG] pgmap v267: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 802 B/s wr, 3 op/s 2023-12-08T22:53:40.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:40 smithi040 bash[24841]: audit 2023-12-08T22:53:39.404218+0000 mon.smithi040 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:40.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:40 smithi149 bash[28710]: audit 2023-12-08T22:53:39.404218+0000 mon.smithi040 (mon.0) 713 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:40.966 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:40.967 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:52:59.095871Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:52:59.096297Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:52:59.096704Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:02.385590Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-12-08T22:53:29.411361Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\nDeploy daemon haproxy.nfs.foo.smithi149.pibfer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.774451Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.cexidw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\nDeploy daemon haproxy.nfs.foo.smithi040.cexidw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.781935Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.aakkek on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:33.784738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:39.392730Z", "running": 1, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:52:59.095508Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:52:59.095124Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:39.392843Z", "ports": [12049], "running": 1, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:52:59.097105Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:52:59.097939Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:52:59.097516Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:41 smithi040 bash[24841]: cluster 2023-12-08T22:53:39.789676+0000 mgr.smithi040.evuiyl (mgr.14180) 317 : cluster [DBG] pgmap v268: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 802 B/s wr, 3 op/s 2023-12-08T22:53:41.661 INFO:tasks.cephadm:nfs.foo has 1/2 2023-12-08T22:53:41.741 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:41 smithi149 bash[28710]: cluster 2023-12-08T22:53:39.789676+0000 mgr.smithi040.evuiyl (mgr.14180) 317 : cluster [DBG] pgmap v268: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 802 B/s wr, 3 op/s 2023-12-08T22:53:42.662 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:42.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:40.953688+0000 mgr.smithi040.evuiyl (mgr.14180) 318 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:42.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.427611+0000 mon.smithi040 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.429507+0000 mon.smithi040 (mon.0) 715 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.430888+0000 mon.smithi040 (mon.0) 716 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.436641+0000 mon.smithi040 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.444893+0000 mon.smithi040 (mon.0) 718 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:42 smithi040 bash[24841]: audit 2023-12-08T22:53:41.456987+0000 mon.smithi040 (mon.0) 719 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:40.953688+0000 mgr.smithi040.evuiyl (mgr.14180) 318 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.427611+0000 mon.smithi040 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.429507+0000 mon.smithi040 (mon.0) 715 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.430888+0000 mon.smithi040 (mon.0) 716 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.436641+0000 mon.smithi040 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.444893+0000 mon.smithi040 (mon.0) 718 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:42 smithi149 bash[28710]: audit 2023-12-08T22:53:41.456987+0000 mon.smithi040 (mon.0) 719 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:43.694 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:43 smithi040 bash[24841]: cluster 2023-12-08T22:53:41.437563+0000 mgr.smithi040.evuiyl (mgr.14180) 319 : cluster [DBG] pgmap v269: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 183 B/s rd, 0 B/s wr, 0 op/s 2023-12-08T22:53:43.694 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:43 smithi040 bash[24841]: cephadm 2023-12-08T22:53:41.460241+0000 mgr.smithi040.evuiyl (mgr.14180) 320 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.cjnkuk on smithi149 2023-12-08T22:53:43.694 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:43 smithi040 bash[24841]: cluster 2023-12-08T22:53:42.434753+0000 mon.smithi040 (mon.0) 720 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:53:43.694 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:43 smithi040 bash[24841]: cluster 2023-12-08T22:53:42.434795+0000 mon.smithi040 (mon.0) 721 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:43 smithi149 bash[28710]: cluster 2023-12-08T22:53:41.437563+0000 mgr.smithi040.evuiyl (mgr.14180) 319 : cluster [DBG] pgmap v269: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 183 B/s rd, 0 B/s wr, 0 op/s 2023-12-08T22:53:43.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:43 smithi149 bash[28710]: cephadm 2023-12-08T22:53:41.460241+0000 mgr.smithi040.evuiyl (mgr.14180) 320 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.cjnkuk on smithi149 2023-12-08T22:53:43.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:43 smithi149 bash[28710]: cluster 2023-12-08T22:53:42.434753+0000 mon.smithi040 (mon.0) 720 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:53:43.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:43 smithi149 bash[28710]: cluster 2023-12-08T22:53:42.434795+0000 mon.smithi040 (mon.0) 721 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:44.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:44 smithi040 bash[24841]: cluster 2023-12-08T22:53:43.438139+0000 mgr.smithi040.evuiyl (mgr.14180) 321 : cluster [DBG] pgmap v270: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 184 B/s rd, 0 op/s 2023-12-08T22:53:44.791 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:44 smithi149 bash[28710]: cluster 2023-12-08T22:53:43.438139+0000 mgr.smithi040.evuiyl (mgr.14180) 321 : cluster [DBG] pgmap v270: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 184 B/s rd, 0 op/s 2023-12-08T22:53:45.664 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:45.664 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:41.416898Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:39.391713Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:41.417293Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:29.411361Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pibfer on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pibfer\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pibfer\nDeploy daemon haproxy.nfs.foo.smithi149.pibfer ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.774451Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.cexidw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-cexidw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.cexidw\nDeploy daemon haproxy.nfs.foo.smithi040.cexidw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:33.781935Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.aakkek on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:33.784738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:45.216845Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\nDeploy daemon haproxy.nfs.foo.smithi149.cjnkuk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:39.392730Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:39.391932Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:39.392056Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:39.392843Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:39.392172Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:39.392284Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:41.417677Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: cephadm 2023-12-08T22:53:45.214813+0000 mgr.smithi040.evuiyl (mgr.14180) 322 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: cephadm 2023-12-08T22:53:45.215322+0000 mgr.smithi040.evuiyl (mgr.14180) 323 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: audit 2023-12-08T22:53:45.215817+0000 mon.smithi040 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.cjnkuk"}]: dispatch 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: cephadm 2023-12-08T22:53:45.217064+0000 mgr.smithi040.evuiyl (mgr.14180) 324 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:45 smithi040 bash[24841]: cephadm 2023-12-08T22:53:45.221365+0000 mgr.smithi040.evuiyl (mgr.14180) 325 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.xqkefg on smithi040 2023-12-08T22:53:45.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: cephadm 2023-12-08T22:53:45.214813+0000 mgr.smithi040.evuiyl (mgr.14180) 322 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: cephadm 2023-12-08T22:53:45.215322+0000 mgr.smithi040.evuiyl (mgr.14180) 323 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: audit 2023-12-08T22:53:45.215817+0000 mon.smithi040 (mon.0) 722 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.cjnkuk"}]: dispatch 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: cephadm 2023-12-08T22:53:45.217064+0000 mgr.smithi040.evuiyl (mgr.14180) 324 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.cjnkuk ... 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:45 smithi149 bash[28710]: cephadm 2023-12-08T22:53:45.221365+0000 mgr.smithi040.evuiyl (mgr.14180) 325 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.xqkefg on smithi040 2023-12-08T22:53:46.360 INFO:tasks.cephadm:nfs.foo has 2/2 2023-12-08T22:53:46.360 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-12-08T22:53:46.370 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2023-12-08T22:53:46.370 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:46 smithi040 bash[24841]: cluster 2023-12-08T22:53:45.438888+0000 mgr.smithi040.evuiyl (mgr.14180) 326 : cluster [DBG] pgmap v271: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T22:53:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:46 smithi040 bash[24841]: audit 2023-12-08T22:53:45.649312+0000 mgr.smithi040.evuiyl (mgr.14180) 327 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:46 smithi149 bash[28710]: cluster 2023-12-08T22:53:45.438888+0000 mgr.smithi040.evuiyl (mgr.14180) 326 : cluster [DBG] pgmap v271: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T22:53:46.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:46 smithi149 bash[28710]: audit 2023-12-08T22:53:45.649312+0000 mgr.smithi040.evuiyl (mgr.14180) 327 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:49 smithi040 bash[24841]: cluster 2023-12-08T22:53:47.439592+0000 mgr.smithi040.evuiyl (mgr.14180) 328 : cluster [DBG] pgmap v272: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T22:53:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:49 smithi040 bash[24841]: audit 2023-12-08T22:53:49.061303+0000 mon.smithi040 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.xqkefg"}]: dispatch 2023-12-08T22:53:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:49 smithi040 bash[24841]: audit 2023-12-08T22:53:49.069580+0000 mon.smithi040 (mon.0) 724 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:53:49.518 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:49.519 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:41.416898Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:39.391713Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:41.417293Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:33.784738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:45.216845Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\nDeploy daemon haproxy.nfs.foo.smithi149.cjnkuk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.062173Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xqkefg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\nDeploy daemon haproxy.nfs.foo.smithi040.xqkefg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.064261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.xrksta on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:39.392730Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:39.391932Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:39.392056Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:39.392843Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:39.392172Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:39.392284Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:41.417677Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:49.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:49 smithi149 bash[28710]: cluster 2023-12-08T22:53:47.439592+0000 mgr.smithi040.evuiyl (mgr.14180) 328 : cluster [DBG] pgmap v272: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T22:53:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:49 smithi149 bash[28710]: audit 2023-12-08T22:53:49.061303+0000 mon.smithi040 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.xqkefg"}]: dispatch 2023-12-08T22:53:49.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:49 smithi149 bash[28710]: audit 2023-12-08T22:53:49.069580+0000 mon.smithi040 (mon.0) 724 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:53:50.354 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cephadm 2023-12-08T22:53:49.060333+0000 mgr.smithi040.evuiyl (mgr.14180) 329 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cephadm 2023-12-08T22:53:49.060838+0000 mgr.smithi040.evuiyl (mgr.14180) 330 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cephadm 2023-12-08T22:53:49.062308+0000 mgr.smithi040.evuiyl (mgr.14180) 331 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.xqkefg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cephadm 2023-12-08T22:53:49.064395+0000 mgr.smithi040.evuiyl (mgr.14180) 332 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.xrksta on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cephadm 2023-12-08T22:53:49.066247+0000 mgr.smithi040.evuiyl (mgr.14180) 333 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cluster 2023-12-08T22:53:49.067140+0000 mgr.smithi040.evuiyl (mgr.14180) 334 : cluster [DBG] pgmap v273: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: cluster 2023-12-08T22:53:49.221582+0000 mon.smithi040 (mon.0) 725 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:53:50.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:50 smithi040 bash[24841]: audit 2023-12-08T22:53:49.433128+0000 mon.smithi040 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:50.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cephadm 2023-12-08T22:53:49.060333+0000 mgr.smithi040.evuiyl (mgr.14180) 329 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cephadm 2023-12-08T22:53:49.060838+0000 mgr.smithi040.evuiyl (mgr.14180) 330 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cephadm 2023-12-08T22:53:49.062308+0000 mgr.smithi040.evuiyl (mgr.14180) 331 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.xqkefg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg 2023-12-08T22:53:50.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xqkefg ... 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cephadm 2023-12-08T22:53:49.064395+0000 mgr.smithi040.evuiyl (mgr.14180) 332 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.xrksta on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cephadm 2023-12-08T22:53:49.066247+0000 mgr.smithi040.evuiyl (mgr.14180) 333 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cluster 2023-12-08T22:53:49.067140+0000 mgr.smithi040.evuiyl (mgr.14180) 334 : cluster [DBG] pgmap v273: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: cluster 2023-12-08T22:53:49.221582+0000 mon.smithi040 (mon.0) 725 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:53:50.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:50 smithi149 bash[28710]: audit 2023-12-08T22:53:49.433128+0000 mon.smithi040 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:51.355 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:51.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:51 smithi040 bash[24841]: audit 2023-12-08T22:53:49.504413+0000 mgr.smithi040.evuiyl (mgr.14180) 335 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:51 smithi149 bash[28710]: audit 2023-12-08T22:53:49.504413+0000 mgr.smithi040.evuiyl (mgr.14180) 335 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:52.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:52 smithi040 bash[24841]: cluster 2023-12-08T22:53:51.068252+0000 mgr.smithi040.evuiyl (mgr.14180) 336 : cluster [DBG] pgmap v274: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:53:52.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:52 smithi149 bash[28710]: cluster 2023-12-08T22:53:51.068252+0000 mgr.smithi040.evuiyl (mgr.14180) 336 : cluster [DBG] pgmap v274: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:53:54.485 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:54.486 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:41.416898Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:39.391713Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:41.417293Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:33.784738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.hfwkgp on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:45.216845Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\nDeploy daemon haproxy.nfs.foo.smithi149.cjnkuk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.062173Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xqkefg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\nDeploy daemon haproxy.nfs.foo.smithi040.xqkefg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.064261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.xrksta on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:39.392730Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:39.391932Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:39.392056Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:39.392843Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:39.392172Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:39.392284Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:41.417677Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:53:54.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:54 smithi040 bash[24841]: cluster 2023-12-08T22:53:53.069376+0000 mgr.smithi040.evuiyl (mgr.14180) 337 : cluster [DBG] pgmap v275: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:54.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:54 smithi149 bash[28710]: cluster 2023-12-08T22:53:53.069376+0000 mgr.smithi040.evuiyl (mgr.14180) 337 : cluster [DBG] pgmap v275: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:55.346 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:53:56.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:54.474935+0000 mgr.smithi040.evuiyl (mgr.14180) 338 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:54.734142+0000 mon.smithi040 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.049372+0000 mon.smithi040 (mon.0) 728 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.051445+0000 mon.smithi040 (mon.0) 729 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.052850+0000 mon.smithi040 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.058819+0000 mon.smithi040 (mon.0) 731 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: cluster 2023-12-08T22:53:55.059937+0000 mgr.smithi040.evuiyl (mgr.14180) 339 : cluster [DBG] pgmap v276: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.066018+0000 mon.smithi040 (mon.0) 732 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: audit 2023-12-08T22:53:55.080165+0000 mon.smithi040 (mon.0) 733 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:55 smithi040 bash[24841]: cephadm 2023-12-08T22:53:55.084630+0000 mgr.smithi040.evuiyl (mgr.14180) 340 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.qdjmsc on smithi149 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:54.474935+0000 mgr.smithi040.evuiyl (mgr.14180) 338 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:54.734142+0000 mon.smithi040 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.049372+0000 mon.smithi040 (mon.0) 728 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.051445+0000 mon.smithi040 (mon.0) 729 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.052850+0000 mon.smithi040 (mon.0) 730 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.058819+0000 mon.smithi040 (mon.0) 731 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: cluster 2023-12-08T22:53:55.059937+0000 mgr.smithi040.evuiyl (mgr.14180) 339 : cluster [DBG] pgmap v276: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.066018+0000 mon.smithi040 (mon.0) 732 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: audit 2023-12-08T22:53:55.080165+0000 mon.smithi040 (mon.0) 733 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:53:56.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:55 smithi149 bash[28710]: cephadm 2023-12-08T22:53:55.084630+0000 mgr.smithi040.evuiyl (mgr.14180) 340 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.qdjmsc on smithi149 2023-12-08T22:53:56.347 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:53:57.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:56 smithi040 bash[24841]: cluster 2023-12-08T22:53:56.057213+0000 mon.smithi040 (mon.0) 734 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:53:57.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:56 smithi040 bash[24841]: cluster 2023-12-08T22:53:56.057276+0000 mon.smithi040 (mon.0) 735 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:57.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:56 smithi149 bash[28710]: cluster 2023-12-08T22:53:56.057213+0000 mon.smithi040 (mon.0) 734 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:53:57.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:56 smithi149 bash[28710]: cluster 2023-12-08T22:53:56.057276+0000 mon.smithi040 (mon.0) 735 : cluster [INF] Cluster is now healthy 2023-12-08T22:53:58.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:58 smithi040 bash[24841]: cluster 2023-12-08T22:53:57.060845+0000 mgr.smithi040.evuiyl (mgr.14180) 341 : cluster [DBG] pgmap v277: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:58 smithi149 bash[28710]: cluster 2023-12-08T22:53:57.060845+0000 mgr.smithi040.evuiyl (mgr.14180) 341 : cluster [DBG] pgmap v277: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:53:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:53:59 smithi040 bash[24841]: audit 2023-12-08T22:53:58.865587+0000 mon.smithi040 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.qdjmsc"}]: dispatch 2023-12-08T22:53:59.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:53:59 smithi149 bash[28710]: audit 2023-12-08T22:53:58.865587+0000 mon.smithi040 (mon.0) 736 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.qdjmsc"}]: dispatch 2023-12-08T22:53:59.643 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:53:59.643 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:45.216845Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.cjnkuk on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-cjnkuk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.cjnkuk\nDeploy daemon haproxy.nfs.foo.smithi149.cjnkuk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.062173Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xqkefg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xqkefg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xqkefg\nDeploy daemon haproxy.nfs.foo.smithi040.xqkefg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:53:49.064261Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.xrksta on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:00.415 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: cephadm 2023-12-08T22:53:58.864600+0000 mgr.smithi040.evuiyl (mgr.14180) 342 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: cephadm 2023-12-08T22:53:58.865049+0000 mgr.smithi040.evuiyl (mgr.14180) 343 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: cephadm 2023-12-08T22:53:58.867006+0000 mgr.smithi040.evuiyl (mgr.14180) 344 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: cephadm 2023-12-08T22:53:58.869254+0000 mgr.smithi040.evuiyl (mgr.14180) 345 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.bdaiws on smithi040 2023-12-08T22:54:00.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:00 smithi040 bash[24841]: cluster 2023-12-08T22:53:59.061454+0000 mgr.smithi040.evuiyl (mgr.14180) 346 : cluster [DBG] pgmap v278: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:00.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: cephadm 2023-12-08T22:53:58.864600+0000 mgr.smithi040.evuiyl (mgr.14180) 342 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:54:00.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: cephadm 2023-12-08T22:53:58.865049+0000 mgr.smithi040.evuiyl (mgr.14180) 343 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: cephadm 2023-12-08T22:53:58.867006+0000 mgr.smithi040.evuiyl (mgr.14180) 344 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qdjmsc ... 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: cephadm 2023-12-08T22:53:58.869254+0000 mgr.smithi040.evuiyl (mgr.14180) 345 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.bdaiws on smithi040 2023-12-08T22:54:00.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:00 smithi149 bash[28710]: cluster 2023-12-08T22:53:59.061454+0000 mgr.smithi040.evuiyl (mgr.14180) 346 : cluster [DBG] pgmap v278: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:01.416 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:01.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:01 smithi040 bash[24841]: audit 2023-12-08T22:53:59.627992+0000 mgr.smithi040.evuiyl (mgr.14180) 347 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:01.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:01 smithi149 bash[28710]: audit 2023-12-08T22:53:59.627992+0000 mgr.smithi040.evuiyl (mgr.14180) 347 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:02.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:02 smithi040 bash[24841]: cluster 2023-12-08T22:54:01.062330+0000 mgr.smithi040.evuiyl (mgr.14180) 348 : cluster [DBG] pgmap v279: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:02 smithi149 bash[28710]: cluster 2023-12-08T22:54:01.062330+0000 mgr.smithi040.evuiyl (mgr.14180) 348 : cluster [DBG] pgmap v279: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:03 smithi040 bash[24841]: audit 2023-12-08T22:54:02.673259+0000 mon.smithi040 (mon.0) 737 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.bdaiws"}]: dispatch 2023-12-08T22:54:03.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:03 smithi149 bash[28710]: audit 2023-12-08T22:54:02.673259+0000 mon.smithi040 (mon.0) 737 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.bdaiws"}]: dispatch 2023-12-08T22:54:04.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cephadm 2023-12-08T22:54:02.671991+0000 mgr.smithi040.evuiyl (mgr.14180) 349 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cephadm 2023-12-08T22:54:02.672599+0000 mgr.smithi040.evuiyl (mgr.14180) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cephadm 2023-12-08T22:54:02.674830+0000 mgr.smithi040.evuiyl (mgr.14180) 351 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cephadm 2023-12-08T22:54:02.679034+0000 mgr.smithi040.evuiyl (mgr.14180) 352 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cephadm 2023-12-08T22:54:02.680807+0000 mgr.smithi040.evuiyl (mgr.14180) 353 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cluster 2023-12-08T22:54:02.681725+0000 mgr.smithi040.evuiyl (mgr.14180) 354 : cluster [DBG] pgmap v280: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:04.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:04 smithi149 bash[28710]: cluster 2023-12-08T22:54:03.248135+0000 mon.smithi040 (mon.0) 738 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cephadm 2023-12-08T22:54:02.671991+0000 mgr.smithi040.evuiyl (mgr.14180) 349 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cephadm 2023-12-08T22:54:02.672599+0000 mgr.smithi040.evuiyl (mgr.14180) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cephadm 2023-12-08T22:54:02.674830+0000 mgr.smithi040.evuiyl (mgr.14180) 351 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:54:04.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.bdaiws ... 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cephadm 2023-12-08T22:54:02.679034+0000 mgr.smithi040.evuiyl (mgr.14180) 352 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cephadm 2023-12-08T22:54:02.680807+0000 mgr.smithi040.evuiyl (mgr.14180) 353 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cluster 2023-12-08T22:54:02.681725+0000 mgr.smithi040.evuiyl (mgr.14180) 354 : cluster [DBG] pgmap v280: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:04.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:04 smithi040 bash[24841]: cluster 2023-12-08T22:54:03.248135+0000 mon.smithi040 (mon.0) 738 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:54:04.808 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:04.808 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:05.582 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:05.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:05 smithi040 bash[24841]: audit 2023-12-08T22:54:04.449377+0000 mon.smithi040 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:54:05.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:05 smithi040 bash[24841]: cluster 2023-12-08T22:54:04.682883+0000 mgr.smithi040.evuiyl (mgr.14180) 355 : cluster [DBG] pgmap v281: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:05.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:05 smithi040 bash[24841]: audit 2023-12-08T22:54:04.794256+0000 mgr.smithi040.evuiyl (mgr.14180) 356 : audit [DBG] from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:05 smithi149 bash[28710]: audit 2023-12-08T22:54:04.449377+0000 mon.smithi040 (mon.0) 739 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:54:05.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:05 smithi149 bash[28710]: cluster 2023-12-08T22:54:04.682883+0000 mgr.smithi040.evuiyl (mgr.14180) 355 : cluster [DBG] pgmap v281: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:05.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:05 smithi149 bash[28710]: audit 2023-12-08T22:54:04.794256+0000 mgr.smithi040.evuiyl (mgr.14180) 356 : audit [DBG] from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:06.583 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:08.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:08 smithi040 bash[24841]: cluster 2023-12-08T22:54:06.683847+0000 mgr.smithi040.evuiyl (mgr.14180) 357 : cluster [DBG] pgmap v282: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:08.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:08 smithi149 bash[28710]: cluster 2023-12-08T22:54:06.683847+0000 mgr.smithi040.evuiyl (mgr.14180) 357 : cluster [DBG] pgmap v282: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:09.926 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:09.926 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:10.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:10 smithi040 bash[24841]: cluster 2023-12-08T22:54:08.684854+0000 mgr.smithi040.evuiyl (mgr.14180) 358 : cluster [DBG] pgmap v283: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:10.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:10 smithi149 bash[28710]: cluster 2023-12-08T22:54:08.684854+0000 mgr.smithi040.evuiyl (mgr.14180) 358 : cluster [DBG] pgmap v283: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:10.657 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:11.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:11 smithi040 bash[24841]: audit 2023-12-08T22:54:09.915764+0000 mgr.smithi040.evuiyl (mgr.14180) 359 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:11.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:11 smithi149 bash[28710]: audit 2023-12-08T22:54:09.915764+0000 mgr.smithi040.evuiyl (mgr.14180) 359 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:11.658 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:12.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:12 smithi040 bash[24841]: cluster 2023-12-08T22:54:10.686091+0000 mgr.smithi040.evuiyl (mgr.14180) 360 : cluster [DBG] pgmap v284: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 352 B/s rd, 0 op/s 2023-12-08T22:54:12.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:12 smithi149 bash[28710]: cluster 2023-12-08T22:54:10.686091+0000 mgr.smithi040.evuiyl (mgr.14180) 360 : cluster [DBG] pgmap v284: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 352 B/s rd, 0 op/s 2023-12-08T22:54:14.549 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:14 smithi040 bash[24841]: cluster 2023-12-08T22:54:12.687245+0000 mgr.smithi040.evuiyl (mgr.14180) 361 : cluster [DBG] pgmap v285: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:14.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:14 smithi149 bash[28710]: cluster 2023-12-08T22:54:12.687245+0000 mgr.smithi040.evuiyl (mgr.14180) 361 : cluster [DBG] pgmap v285: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:54:14.935 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:14.935 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:15.692 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:16.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:16 smithi149 bash[28710]: cluster 2023-12-08T22:54:14.688341+0000 mgr.smithi040.evuiyl (mgr.14180) 362 : cluster [DBG] pgmap v286: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:16.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:16 smithi149 bash[28710]: audit 2023-12-08T22:54:14.919049+0000 mgr.smithi040.evuiyl (mgr.14180) 363 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:16.693 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:16.706 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:16 smithi040 bash[24841]: cluster 2023-12-08T22:54:14.688341+0000 mgr.smithi040.evuiyl (mgr.14180) 362 : cluster [DBG] pgmap v286: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:16.706 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:16 smithi040 bash[24841]: audit 2023-12-08T22:54:14.919049+0000 mgr.smithi040.evuiyl (mgr.14180) 363 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:18 smithi040 bash[24841]: cluster 2023-12-08T22:54:16.689531+0000 mgr.smithi040.evuiyl (mgr.14180) 364 : cluster [DBG] pgmap v287: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:18 smithi040 bash[24841]: audit 2023-12-08T22:54:17.422832+0000 mon.smithi040 (mon.0) 740 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:54:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:18 smithi149 bash[28710]: cluster 2023-12-08T22:54:16.689531+0000 mgr.smithi040.evuiyl (mgr.14180) 364 : cluster [DBG] pgmap v287: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:18.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:18 smithi149 bash[28710]: audit 2023-12-08T22:54:17.422832+0000 mon.smithi040 (mon.0) 740 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:54:19.995 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:19.996 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:20.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:20 smithi040 bash[24841]: cluster 2023-12-08T22:54:18.690780+0000 mgr.smithi040.evuiyl (mgr.14180) 365 : cluster [DBG] pgmap v288: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:20.810 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:20.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:20 smithi149 bash[28710]: cluster 2023-12-08T22:54:18.690780+0000 mgr.smithi040.evuiyl (mgr.14180) 365 : cluster [DBG] pgmap v288: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:21 smithi149 bash[28710]: audit 2023-12-08T22:54:19.985764+0000 mgr.smithi040.evuiyl (mgr.14180) 366 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:21.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:21 smithi040 bash[24841]: audit 2023-12-08T22:54:19.985764+0000 mgr.smithi040.evuiyl (mgr.14180) 366 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:21.811 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:22.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:22 smithi040 bash[24841]: cluster 2023-12-08T22:54:20.692035+0000 mgr.smithi040.evuiyl (mgr.14180) 367 : cluster [DBG] pgmap v289: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:22 smithi149 bash[28710]: cluster 2023-12-08T22:54:20.692035+0000 mgr.smithi040.evuiyl (mgr.14180) 367 : cluster [DBG] pgmap v289: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:23.703 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:23 smithi040 bash[24841]: cluster 2023-12-08T22:54:22.693194+0000 mgr.smithi040.evuiyl (mgr.14180) 368 : cluster [DBG] pgmap v290: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:23 smithi149 bash[28710]: cluster 2023-12-08T22:54:22.693194+0000 mgr.smithi040.evuiyl (mgr.14180) 368 : cluster [DBG] pgmap v290: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:24.989 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:24.989 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:25.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:26.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:25 smithi040 bash[24841]: cluster 2023-12-08T22:54:24.694449+0000 mgr.smithi040.evuiyl (mgr.14180) 369 : cluster [DBG] pgmap v291: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:26.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:25 smithi040 bash[24841]: audit 2023-12-08T22:54:24.974073+0000 mgr.smithi040.evuiyl (mgr.14180) 370 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:26.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:25 smithi149 bash[28710]: cluster 2023-12-08T22:54:24.694449+0000 mgr.smithi040.evuiyl (mgr.14180) 369 : cluster [DBG] pgmap v291: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:26.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:25 smithi149 bash[28710]: audit 2023-12-08T22:54:24.974073+0000 mgr.smithi040.evuiyl (mgr.14180) 370 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:26.761 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:28.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:28 smithi040 bash[24841]: cluster 2023-12-08T22:54:26.695687+0000 mgr.smithi040.evuiyl (mgr.14180) 371 : cluster [DBG] pgmap v292: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:28.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:28 smithi149 bash[28710]: cluster 2023-12-08T22:54:26.695687+0000 mgr.smithi040.evuiyl (mgr.14180) 371 : cluster [DBG] pgmap v292: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:30.006 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:30.006 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:30.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:30 smithi040 bash[24841]: cluster 2023-12-08T22:54:28.696962+0000 mgr.smithi040.evuiyl (mgr.14180) 372 : cluster [DBG] pgmap v293: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:30 smithi149 bash[28710]: cluster 2023-12-08T22:54:28.696962+0000 mgr.smithi040.evuiyl (mgr.14180) 372 : cluster [DBG] pgmap v293: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:30.774 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:31.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:31 smithi040 bash[24841]: audit 2023-12-08T22:54:29.996252+0000 mgr.smithi040.evuiyl (mgr.14180) 373 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:31.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:31 smithi149 bash[28710]: audit 2023-12-08T22:54:29.996252+0000 mgr.smithi040.evuiyl (mgr.14180) 373 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:31.775 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:32.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:32 smithi040 bash[24841]: cluster 2023-12-08T22:54:30.698300+0000 mgr.smithi040.evuiyl (mgr.14180) 374 : cluster [DBG] pgmap v294: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:32.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:32 smithi149 bash[28710]: cluster 2023-12-08T22:54:30.698300+0000 mgr.smithi040.evuiyl (mgr.14180) 374 : cluster [DBG] pgmap v294: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:34.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:34 smithi149 bash[28710]: cluster 2023-12-08T22:54:32.699492+0000 mgr.smithi040.evuiyl (mgr.14180) 375 : cluster [DBG] pgmap v295: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:34.688 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:34 smithi040 bash[24841]: cluster 2023-12-08T22:54:32.699492+0000 mgr.smithi040.evuiyl (mgr.14180) 375 : cluster [DBG] pgmap v295: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:35.063 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:35.064 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:35.855 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:36 smithi149 bash[28710]: cluster 2023-12-08T22:54:34.700363+0000 mgr.smithi040.evuiyl (mgr.14180) 376 : cluster [DBG] pgmap v296: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:36.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:36 smithi149 bash[28710]: audit 2023-12-08T22:54:35.048727+0000 mgr.smithi040.evuiyl (mgr.14180) 377 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:36 smithi040 bash[24841]: cluster 2023-12-08T22:54:34.700363+0000 mgr.smithi040.evuiyl (mgr.14180) 376 : cluster [DBG] pgmap v296: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:36.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:36 smithi040 bash[24841]: audit 2023-12-08T22:54:35.048727+0000 mgr.smithi040.evuiyl (mgr.14180) 377 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:36.856 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:38.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:38 smithi149 bash[28710]: cluster 2023-12-08T22:54:36.701591+0000 mgr.smithi040.evuiyl (mgr.14180) 378 : cluster [DBG] pgmap v297: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:38.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:38 smithi040 bash[24841]: cluster 2023-12-08T22:54:36.701591+0000 mgr.smithi040.evuiyl (mgr.14180) 378 : cluster [DBG] pgmap v297: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:40.149 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:40.149 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:40.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:40 smithi040 bash[24841]: cluster 2023-12-08T22:54:38.702598+0000 mgr.smithi040.evuiyl (mgr.14180) 379 : cluster [DBG] pgmap v298: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:40.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:40 smithi149 bash[28710]: cluster 2023-12-08T22:54:38.702598+0000 mgr.smithi040.evuiyl (mgr.14180) 379 : cluster [DBG] pgmap v298: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:40.906 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:41.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:41 smithi149 bash[28710]: audit 2023-12-08T22:54:40.133965+0000 mgr.smithi040.evuiyl (mgr.14180) 380 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:41.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:41 smithi040 bash[24841]: audit 2023-12-08T22:54:40.133965+0000 mgr.smithi040.evuiyl (mgr.14180) 380 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:41.907 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:42.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:42 smithi149 bash[28710]: cluster 2023-12-08T22:54:40.703462+0000 mgr.smithi040.evuiyl (mgr.14180) 381 : cluster [DBG] pgmap v299: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:42.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:42 smithi040 bash[24841]: cluster 2023-12-08T22:54:40.703462+0000 mgr.smithi040.evuiyl (mgr.14180) 381 : cluster [DBG] pgmap v299: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:44.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:44 smithi149 bash[28710]: cluster 2023-12-08T22:54:42.704516+0000 mgr.smithi040.evuiyl (mgr.14180) 382 : cluster [DBG] pgmap v300: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:44.709 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:44 smithi040 bash[24841]: cluster 2023-12-08T22:54:42.704516+0000 mgr.smithi040.evuiyl (mgr.14180) 382 : cluster [DBG] pgmap v300: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:45.095 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:45.095 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:45.848 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:46.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:46 smithi149 bash[28710]: cluster 2023-12-08T22:54:44.705495+0000 mgr.smithi040.evuiyl (mgr.14180) 383 : cluster [DBG] pgmap v301: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:46.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:46 smithi149 bash[28710]: audit 2023-12-08T22:54:45.079337+0000 mgr.smithi040.evuiyl (mgr.14180) 384 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:46.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:46 smithi040 bash[24841]: cluster 2023-12-08T22:54:44.705495+0000 mgr.smithi040.evuiyl (mgr.14180) 383 : cluster [DBG] pgmap v301: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:46.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:46 smithi040 bash[24841]: audit 2023-12-08T22:54:45.079337+0000 mgr.smithi040.evuiyl (mgr.14180) 384 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:46.849 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:48.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:48 smithi149 bash[28710]: cluster 2023-12-08T22:54:46.706666+0000 mgr.smithi040.evuiyl (mgr.14180) 385 : cluster [DBG] pgmap v302: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:48.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:48 smithi040 bash[24841]: cluster 2023-12-08T22:54:46.706666+0000 mgr.smithi040.evuiyl (mgr.14180) 385 : cluster [DBG] pgmap v302: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:50.083 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:50.083 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:50.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:50 smithi040 bash[24841]: cluster 2023-12-08T22:54:48.707757+0000 mgr.smithi040.evuiyl (mgr.14180) 386 : cluster [DBG] pgmap v303: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:50.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:50 smithi149 bash[28710]: cluster 2023-12-08T22:54:48.707757+0000 mgr.smithi040.evuiyl (mgr.14180) 386 : cluster [DBG] pgmap v303: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:50.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:51.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:51 smithi149 bash[28710]: audit 2023-12-08T22:54:50.072379+0000 mgr.smithi040.evuiyl (mgr.14180) 387 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:51.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:51 smithi040 bash[24841]: audit 2023-12-08T22:54:50.072379+0000 mgr.smithi040.evuiyl (mgr.14180) 387 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:51.898 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:52.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:52 smithi040 bash[24841]: cluster 2023-12-08T22:54:50.709093+0000 mgr.smithi040.evuiyl (mgr.14180) 388 : cluster [DBG] pgmap v304: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:52 smithi149 bash[28710]: cluster 2023-12-08T22:54:50.709093+0000 mgr.smithi040.evuiyl (mgr.14180) 388 : cluster [DBG] pgmap v304: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:54:54.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:54 smithi040 bash[24841]: cluster 2023-12-08T22:54:52.710269+0000 mgr.smithi040.evuiyl (mgr.14180) 389 : cluster [DBG] pgmap v305: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:54 smithi149 bash[28710]: cluster 2023-12-08T22:54:52.710269+0000 mgr.smithi040.evuiyl (mgr.14180) 389 : cluster [DBG] pgmap v305: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:55.156 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:54:55.157 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:54:55.950 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:54:56.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:56 smithi040 bash[24841]: cluster 2023-12-08T22:54:54.711556+0000 mgr.smithi040.evuiyl (mgr.14180) 390 : cluster [DBG] pgmap v306: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:56.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:56 smithi040 bash[24841]: audit 2023-12-08T22:54:55.141173+0000 mgr.smithi040.evuiyl (mgr.14180) 391 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:56 smithi149 bash[28710]: cluster 2023-12-08T22:54:54.711556+0000 mgr.smithi040.evuiyl (mgr.14180) 390 : cluster [DBG] pgmap v306: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:56.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:56 smithi149 bash[28710]: audit 2023-12-08T22:54:55.141173+0000 mgr.smithi040.evuiyl (mgr.14180) 391 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:54:56.951 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:54:58.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:54:58 smithi040 bash[24841]: cluster 2023-12-08T22:54:56.712723+0000 mgr.smithi040.evuiyl (mgr.14180) 392 : cluster [DBG] pgmap v307: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:54:58.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:54:58 smithi149 bash[28710]: cluster 2023-12-08T22:54:56.712723+0000 mgr.smithi040.evuiyl (mgr.14180) 392 : cluster [DBG] pgmap v307: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:00.193 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:00.194 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:00.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:00 smithi040 bash[24841]: cluster 2023-12-08T22:54:58.713915+0000 mgr.smithi040.evuiyl (mgr.14180) 393 : cluster [DBG] pgmap v308: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:00 smithi149 bash[28710]: cluster 2023-12-08T22:54:58.713915+0000 mgr.smithi040.evuiyl (mgr.14180) 393 : cluster [DBG] pgmap v308: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:00.949 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:01.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:01 smithi149 bash[28710]: audit 2023-12-08T22:55:00.178748+0000 mgr.smithi040.evuiyl (mgr.14180) 394 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:01.656 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:01 smithi040 bash[24841]: audit 2023-12-08T22:55:00.178748+0000 mgr.smithi040.evuiyl (mgr.14180) 394 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:01.950 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:02.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:02 smithi040 bash[24841]: cluster 2023-12-08T22:55:00.714757+0000 mgr.smithi040.evuiyl (mgr.14180) 395 : cluster [DBG] pgmap v309: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:02 smithi149 bash[28710]: cluster 2023-12-08T22:55:00.714757+0000 mgr.smithi040.evuiyl (mgr.14180) 395 : cluster [DBG] pgmap v309: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:03.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:03 smithi040 bash[24841]: audit 2023-12-08T22:55:02.684738+0000 mon.smithi040 (mon.0) 741 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:55:03.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:03 smithi040 bash[24841]: audit 2023-12-08T22:55:02.970629+0000 mon.smithi040 (mon.0) 742 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:03 smithi149 bash[28710]: audit 2023-12-08T22:55:02.684738+0000 mon.smithi040 (mon.0) 741 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:55:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:03 smithi149 bash[28710]: audit 2023-12-08T22:55:02.970629+0000 mon.smithi040 (mon.0) 742 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:04.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:04 smithi040 bash[24841]: cluster 2023-12-08T22:55:02.715817+0000 mgr.smithi040.evuiyl (mgr.14180) 396 : cluster [DBG] pgmap v310: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:04.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:04 smithi149 bash[28710]: cluster 2023-12-08T22:55:02.715817+0000 mgr.smithi040.evuiyl (mgr.14180) 396 : cluster [DBG] pgmap v310: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:05.177 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:05.178 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:53:55.034427Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:53:54.722839Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:53:55.035042Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:53:54.723892Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:53:54.723050Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:53:54.723179Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:53:54.724010Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:53:54.723300Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:53:54.723419Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:53:55.035548Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:05.950 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:06.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:06 smithi040 bash[24841]: cluster 2023-12-08T22:55:04.717159+0000 mgr.smithi040.evuiyl (mgr.14180) 397 : cluster [DBG] pgmap v311: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:06.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:06 smithi040 bash[24841]: audit 2023-12-08T22:55:05.162844+0000 mgr.smithi040.evuiyl (mgr.14180) 398 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:06 smithi149 bash[28710]: cluster 2023-12-08T22:55:04.717159+0000 mgr.smithi040.evuiyl (mgr.14180) 397 : cluster [DBG] pgmap v311: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:06 smithi149 bash[28710]: audit 2023-12-08T22:55:05.162844+0000 mgr.smithi040.evuiyl (mgr.14180) 398 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:06.952 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:08.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:08 smithi040 bash[24841]: cluster 2023-12-08T22:55:06.718315+0000 mgr.smithi040.evuiyl (mgr.14180) 399 : cluster [DBG] pgmap v312: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:08 smithi040 bash[24841]: audit 2023-12-08T22:55:08.266591+0000 mon.smithi040 (mon.0) 743 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:08.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:08 smithi149 bash[28710]: cluster 2023-12-08T22:55:06.718315+0000 mgr.smithi040.evuiyl (mgr.14180) 399 : cluster [DBG] pgmap v312: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:08.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:08 smithi149 bash[28710]: audit 2023-12-08T22:55:08.266591+0000 mon.smithi040 (mon.0) 743 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.293 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:10.293 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:49.066128Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.lrlfud on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: cluster 2023-12-08T22:55:08.719105+0000 mgr.smithi040.evuiyl (mgr.14180) 400 : cluster [DBG] pgmap v313: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:09.687807+0000 mon.smithi040 (mon.0) 744 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:10.005479+0000 mon.smithi040 (mon.0) 745 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:10.006781+0000 mon.smithi040 (mon.0) 746 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:10.014829+0000 mon.smithi040 (mon.0) 747 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:10.022646+0000 mon.smithi040 (mon.0) 748 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:55:10.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:10 smithi040 bash[24841]: audit 2023-12-08T22:55:10.035674+0000 mon.smithi040 (mon.0) 749 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: cluster 2023-12-08T22:55:08.719105+0000 mgr.smithi040.evuiyl (mgr.14180) 400 : cluster [DBG] pgmap v313: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:09.687807+0000 mon.smithi040 (mon.0) 744 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:10.005479+0000 mon.smithi040 (mon.0) 745 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:10.006781+0000 mon.smithi040 (mon.0) 746 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:10.014829+0000 mon.smithi040 (mon.0) 747 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:10.022646+0000 mon.smithi040 (mon.0) 748 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:55:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:10 smithi149 bash[28710]: audit 2023-12-08T22:55:10.035674+0000 mon.smithi040 (mon.0) 749 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:11.065 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:11.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:11 smithi149 bash[28710]: cluster 2023-12-08T22:55:10.015751+0000 mgr.smithi040.evuiyl (mgr.14180) 401 : cluster [DBG] pgmap v314: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 362 B/s rd, 0 op/s 2023-12-08T22:55:11.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:11 smithi149 bash[28710]: cephadm 2023-12-08T22:55:10.040634+0000 mgr.smithi040.evuiyl (mgr.14180) 402 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.jtjhns on smithi149 2023-12-08T22:55:11.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:11 smithi149 bash[28710]: audit 2023-12-08T22:55:10.278113+0000 mgr.smithi040.evuiyl (mgr.14180) 403 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:11.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:11 smithi149 bash[28710]: cluster 2023-12-08T22:55:11.010676+0000 mon.smithi040 (mon.0) 750 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:55:11.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:11 smithi149 bash[28710]: cluster 2023-12-08T22:55:11.010758+0000 mon.smithi040 (mon.0) 751 : cluster [INF] Cluster is now healthy 2023-12-08T22:55:11.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:11 smithi040 bash[24841]: cluster 2023-12-08T22:55:10.015751+0000 mgr.smithi040.evuiyl (mgr.14180) 401 : cluster [DBG] pgmap v314: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 362 B/s rd, 0 op/s 2023-12-08T22:55:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:11 smithi040 bash[24841]: cephadm 2023-12-08T22:55:10.040634+0000 mgr.smithi040.evuiyl (mgr.14180) 402 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.jtjhns on smithi149 2023-12-08T22:55:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:11 smithi040 bash[24841]: audit 2023-12-08T22:55:10.278113+0000 mgr.smithi040.evuiyl (mgr.14180) 403 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:11 smithi040 bash[24841]: cluster 2023-12-08T22:55:11.010676+0000 mon.smithi040 (mon.0) 750 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:55:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:11 smithi040 bash[24841]: cluster 2023-12-08T22:55:11.010758+0000 mon.smithi040 (mon.0) 751 : cluster [INF] Cluster is now healthy 2023-12-08T22:55:12.066 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:13 smithi040 bash[24841]: cluster 2023-12-08T22:55:12.016650+0000 mgr.smithi040.evuiyl (mgr.14180) 404 : cluster [DBG] pgmap v315: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:13.798 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:13 smithi149 bash[28710]: cluster 2023-12-08T22:55:12.016650+0000 mgr.smithi040.evuiyl (mgr.14180) 404 : cluster [DBG] pgmap v315: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:14.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:14 smithi040 bash[24841]: audit 2023-12-08T22:55:13.866694+0000 mon.smithi040 (mon.0) 752 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.jtjhns"}]: dispatch 2023-12-08T22:55:14.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:14 smithi149 bash[28710]: audit 2023-12-08T22:55:13.866694+0000 mon.smithi040 (mon.0) 752 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.jtjhns"}]: dispatch 2023-12-08T22:55:15.357 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:15.357 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:53:58.866879Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qdjmsc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qdjmsc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qdjmsc\nDeploy daemon haproxy.nfs.foo.smithi149.qdjmsc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.674586Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.bdaiws on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-bdaiws\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.bdaiws\nDeploy daemon haproxy.nfs.foo.smithi040.bdaiws ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:54:02.678926Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mpwyka on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: cephadm 2023-12-08T22:55:13.865391+0000 mgr.smithi040.evuiyl (mgr.14180) 405 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:55:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: cephadm 2023-12-08T22:55:13.865978+0000 mgr.smithi040.evuiyl (mgr.14180) 406 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: cephadm 2023-12-08T22:55:13.868315+0000 mgr.smithi040.evuiyl (mgr.14180) 407 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: cephadm 2023-12-08T22:55:13.872756+0000 mgr.smithi040.evuiyl (mgr.14180) 408 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.qhbxwr on smithi040 2023-12-08T22:55:15.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:15 smithi040 bash[24841]: cluster 2023-12-08T22:55:14.017443+0000 mgr.smithi040.evuiyl (mgr.14180) 409 : cluster [DBG] pgmap v316: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: cephadm 2023-12-08T22:55:13.865391+0000 mgr.smithi040.evuiyl (mgr.14180) 405 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:55:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: cephadm 2023-12-08T22:55:13.865978+0000 mgr.smithi040.evuiyl (mgr.14180) 406 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: cephadm 2023-12-08T22:55:13.868315+0000 mgr.smithi040.evuiyl (mgr.14180) 407 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.jtjhns ... 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: cephadm 2023-12-08T22:55:13.872756+0000 mgr.smithi040.evuiyl (mgr.14180) 408 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.qhbxwr on smithi040 2023-12-08T22:55:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:15 smithi149 bash[28710]: cluster 2023-12-08T22:55:14.017443+0000 mgr.smithi040.evuiyl (mgr.14180) 409 : cluster [DBG] pgmap v316: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:16.181 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:16 smithi040 bash[24841]: audit 2023-12-08T22:55:15.342803+0000 mgr.smithi040.evuiyl (mgr.14180) 410 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:16 smithi149 bash[28710]: audit 2023-12-08T22:55:15.342803+0000 mgr.smithi040.evuiyl (mgr.14180) 410 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:17.182 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:17.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:17 smithi040 bash[24841]: cluster 2023-12-08T22:55:16.018333+0000 mgr.smithi040.evuiyl (mgr.14180) 411 : cluster [DBG] pgmap v317: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:17 smithi149 bash[28710]: cluster 2023-12-08T22:55:16.018333+0000 mgr.smithi040.evuiyl (mgr.14180) 411 : cluster [DBG] pgmap v317: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:18.498 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:18 smithi040 bash[24841]: audit 2023-12-08T22:55:17.425703+0000 mon.smithi040 (mon.0) 753 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:18.498 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:18 smithi040 bash[24841]: audit 2023-12-08T22:55:18.277417+0000 mon.smithi040 (mon.0) 754 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.qhbxwr"}]: dispatch 2023-12-08T22:55:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:18 smithi149 bash[28710]: audit 2023-12-08T22:55:17.425703+0000 mon.smithi040 (mon.0) 753 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:18.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:18 smithi149 bash[28710]: audit 2023-12-08T22:55:18.277417+0000 mon.smithi040 (mon.0) 754 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.qhbxwr"}]: dispatch 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cluster 2023-12-08T22:55:18.019226+0000 mgr.smithi040.evuiyl (mgr.14180) 412 : cluster [DBG] pgmap v318: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cephadm 2023-12-08T22:55:18.276312+0000 mgr.smithi040.evuiyl (mgr.14180) 413 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.443 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.444 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.444 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.444 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.444 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.444 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:55:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:55:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cephadm 2023-12-08T22:55:18.276821+0000 mgr.smithi040.evuiyl (mgr.14180) 414 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cephadm 2023-12-08T22:55:18.278444+0000 mgr.smithi040.evuiyl (mgr.14180) 415 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cephadm 2023-12-08T22:55:18.280314+0000 mgr.smithi040.evuiyl (mgr.14180) 416 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:55:19.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cephadm 2023-12-08T22:55:18.281928+0000 mgr.smithi040.evuiyl (mgr.14180) 417 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:55:19.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cluster 2023-12-08T22:55:18.282871+0000 mgr.smithi040.evuiyl (mgr.14180) 418 : cluster [DBG] pgmap v319: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 214 B/s rd, 0 op/s 2023-12-08T22:55:19.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:19 smithi040 bash[24841]: cluster 2023-12-08T22:55:18.424065+0000 mon.smithi040 (mon.0) 755 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:55:19.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cluster 2023-12-08T22:55:18.019226+0000 mgr.smithi040.evuiyl (mgr.14180) 412 : cluster [DBG] pgmap v318: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 181 B/s rd, 0 op/s 2023-12-08T22:55:19.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cephadm 2023-12-08T22:55:18.276312+0000 mgr.smithi040.evuiyl (mgr.14180) 413 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cephadm 2023-12-08T22:55:18.276821+0000 mgr.smithi040.evuiyl (mgr.14180) 414 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cephadm 2023-12-08T22:55:18.278444+0000 mgr.smithi040.evuiyl (mgr.14180) 415 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.qhbxwr ... 2023-12-08T22:55:19.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cephadm 2023-12-08T22:55:18.280314+0000 mgr.smithi040.evuiyl (mgr.14180) 416 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cephadm 2023-12-08T22:55:18.281928+0000 mgr.smithi040.evuiyl (mgr.14180) 417 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:55:19.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cluster 2023-12-08T22:55:18.282871+0000 mgr.smithi040.evuiyl (mgr.14180) 418 : cluster [DBG] pgmap v319: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 214 B/s rd, 0 op/s 2023-12-08T22:55:19.822 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:19 smithi149 bash[28710]: cluster 2023-12-08T22:55:18.424065+0000 mon.smithi040 (mon.0) 755 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:55:20.664 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:20.665 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:20.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:20 smithi040 bash[24841]: audit 2023-12-08T22:55:19.497594+0000 mon.smithi040 (mon.0) 756 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:20.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:20 smithi040 bash[24841]: cluster 2023-12-08T22:55:20.284303+0000 mgr.smithi040.evuiyl (mgr.14180) 419 : cluster [DBG] pgmap v320: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:20.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:20 smithi149 bash[28710]: audit 2023-12-08T22:55:19.497594+0000 mon.smithi040 (mon.0) 756 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:20 smithi149 bash[28710]: cluster 2023-12-08T22:55:20.284303+0000 mgr.smithi040.evuiyl (mgr.14180) 419 : cluster [DBG] pgmap v320: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:21.437 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:21 smithi040 bash[24841]: audit 2023-12-08T22:55:20.653040+0000 mgr.smithi040.evuiyl (mgr.14180) 420 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:21.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:21 smithi149 bash[28710]: audit 2023-12-08T22:55:20.653040+0000 mgr.smithi040.evuiyl (mgr.14180) 420 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:22.438 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:23.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:23 smithi149 bash[28710]: cluster 2023-12-08T22:55:22.285599+0000 mgr.smithi040.evuiyl (mgr.14180) 421 : cluster [DBG] pgmap v321: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:23.587 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:23 smithi040 bash[24841]: cluster 2023-12-08T22:55:22.285599+0000 mgr.smithi040.evuiyl (mgr.14180) 421 : cluster [DBG] pgmap v321: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:25.681 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:25.682 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:25.738 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:25 smithi040 bash[24841]: cluster 2023-12-08T22:55:24.286847+0000 mgr.smithi040.evuiyl (mgr.14180) 422 : cluster [DBG] pgmap v322: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:25 smithi149 bash[28710]: cluster 2023-12-08T22:55:24.286847+0000 mgr.smithi040.evuiyl (mgr.14180) 422 : cluster [DBG] pgmap v322: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:26.500 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:27.501 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:27.705 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:27 smithi040 bash[24841]: audit 2023-12-08T22:55:25.671006+0000 mgr.smithi040.evuiyl (mgr.14180) 423 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:27.705 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:27 smithi040 bash[24841]: cluster 2023-12-08T22:55:26.288022+0000 mgr.smithi040.evuiyl (mgr.14180) 424 : cluster [DBG] pgmap v323: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:27 smithi149 bash[28710]: audit 2023-12-08T22:55:25.671006+0000 mgr.smithi040.evuiyl (mgr.14180) 423 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:27.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:27 smithi149 bash[28710]: cluster 2023-12-08T22:55:26.288022+0000 mgr.smithi040.evuiyl (mgr.14180) 424 : cluster [DBG] pgmap v323: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:29.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:29 smithi040 bash[24841]: cluster 2023-12-08T22:55:28.289081+0000 mgr.smithi040.evuiyl (mgr.14180) 425 : cluster [DBG] pgmap v324: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:29 smithi149 bash[28710]: cluster 2023-12-08T22:55:28.289081+0000 mgr.smithi040.evuiyl (mgr.14180) 425 : cluster [DBG] pgmap v324: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:55:30.922 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:30.922 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:31.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:31 smithi040 bash[24841]: cluster 2023-12-08T22:55:30.290603+0000 mgr.smithi040.evuiyl (mgr.14180) 426 : cluster [DBG] pgmap v325: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:31.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:31 smithi149 bash[28710]: cluster 2023-12-08T22:55:30.290603+0000 mgr.smithi040.evuiyl (mgr.14180) 426 : cluster [DBG] pgmap v325: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:31.762 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:32.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:32 smithi040 bash[24841]: audit 2023-12-08T22:55:30.905825+0000 mgr.smithi040.evuiyl (mgr.14180) 427 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:32.762 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:32 smithi149 bash[28710]: audit 2023-12-08T22:55:30.905825+0000 mgr.smithi040.evuiyl (mgr.14180) 427 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:33.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:33 smithi040 bash[24841]: cluster 2023-12-08T22:55:32.291659+0000 mgr.smithi040.evuiyl (mgr.14180) 428 : cluster [DBG] pgmap v326: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:33.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:33 smithi040 bash[24841]: audit 2023-12-08T22:55:32.424914+0000 mon.smithi040 (mon.0) 757 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:33 smithi149 bash[28710]: cluster 2023-12-08T22:55:32.291659+0000 mgr.smithi040.evuiyl (mgr.14180) 428 : cluster [DBG] pgmap v326: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:33 smithi149 bash[28710]: audit 2023-12-08T22:55:32.424914+0000 mon.smithi040 (mon.0) 757 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:55:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:35 smithi040 bash[24841]: cluster 2023-12-08T22:55:34.292825+0000 mgr.smithi040.evuiyl (mgr.14180) 429 : cluster [DBG] pgmap v327: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:35 smithi149 bash[28710]: cluster 2023-12-08T22:55:34.292825+0000 mgr.smithi040.evuiyl (mgr.14180) 429 : cluster [DBG] pgmap v327: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:35.932 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:35.933 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:36.722 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:37.723 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:37.736 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:37 smithi040 bash[24841]: audit 2023-12-08T22:55:35.917955+0000 mgr.smithi040.evuiyl (mgr.14180) 430 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:37.736 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:37 smithi040 bash[24841]: cluster 2023-12-08T22:55:36.293593+0000 mgr.smithi040.evuiyl (mgr.14180) 431 : cluster [DBG] pgmap v328: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:37 smithi149 bash[28710]: audit 2023-12-08T22:55:35.917955+0000 mgr.smithi040.evuiyl (mgr.14180) 430 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:37 smithi149 bash[28710]: cluster 2023-12-08T22:55:36.293593+0000 mgr.smithi040.evuiyl (mgr.14180) 431 : cluster [DBG] pgmap v328: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:39.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:39 smithi040 bash[24841]: cluster 2023-12-08T22:55:38.294706+0000 mgr.smithi040.evuiyl (mgr.14180) 432 : cluster [DBG] pgmap v329: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:39 smithi149 bash[28710]: cluster 2023-12-08T22:55:38.294706+0000 mgr.smithi040.evuiyl (mgr.14180) 432 : cluster [DBG] pgmap v329: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:40.927 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:40.928 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:41.664 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:41.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:41 smithi149 bash[28710]: cluster 2023-12-08T22:55:40.295955+0000 mgr.smithi040.evuiyl (mgr.14180) 433 : cluster [DBG] pgmap v330: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:41.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:41 smithi040 bash[24841]: cluster 2023-12-08T22:55:40.295955+0000 mgr.smithi040.evuiyl (mgr.14180) 433 : cluster [DBG] pgmap v330: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:42.665 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:42 smithi040 bash[24841]: audit 2023-12-08T22:55:40.912503+0000 mgr.smithi040.evuiyl (mgr.14180) 434 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:42 smithi149 bash[28710]: audit 2023-12-08T22:55:40.912503+0000 mgr.smithi040.evuiyl (mgr.14180) 434 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:43.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:43 smithi040 bash[24841]: cluster 2023-12-08T22:55:42.297100+0000 mgr.smithi040.evuiyl (mgr.14180) 435 : cluster [DBG] pgmap v331: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:43 smithi149 bash[28710]: cluster 2023-12-08T22:55:42.297100+0000 mgr.smithi040.evuiyl (mgr.14180) 435 : cluster [DBG] pgmap v331: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:45.749 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:45.750 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:45.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:45 smithi040 bash[24841]: cluster 2023-12-08T22:55:44.298269+0000 mgr.smithi040.evuiyl (mgr.14180) 436 : cluster [DBG] pgmap v332: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:45.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:45 smithi149 bash[28710]: cluster 2023-12-08T22:55:44.298269+0000 mgr.smithi040.evuiyl (mgr.14180) 436 : cluster [DBG] pgmap v332: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:46.521 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:46 smithi040 bash[24841]: audit 2023-12-08T22:55:45.733927+0000 mgr.smithi040.evuiyl (mgr.14180) 437 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:46 smithi040 bash[24841]: cluster 2023-12-08T22:55:46.299206+0000 mgr.smithi040.evuiyl (mgr.14180) 438 : cluster [DBG] pgmap v333: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:46 smithi149 bash[28710]: audit 2023-12-08T22:55:45.733927+0000 mgr.smithi040.evuiyl (mgr.14180) 437 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:46.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:46 smithi149 bash[28710]: cluster 2023-12-08T22:55:46.299206+0000 mgr.smithi040.evuiyl (mgr.14180) 438 : cluster [DBG] pgmap v333: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:47.522 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:49.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:49 smithi040 bash[24841]: cluster 2023-12-08T22:55:48.300236+0000 mgr.smithi040.evuiyl (mgr.14180) 439 : cluster [DBG] pgmap v334: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:49.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:49 smithi149 bash[28710]: cluster 2023-12-08T22:55:48.300236+0000 mgr.smithi040.evuiyl (mgr.14180) 439 : cluster [DBG] pgmap v334: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:50.664 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:50.664 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:51.422 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:51.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:51 smithi149 bash[28710]: cluster 2023-12-08T22:55:50.301337+0000 mgr.smithi040.evuiyl (mgr.14180) 440 : cluster [DBG] pgmap v335: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:51.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:51 smithi040 bash[24841]: cluster 2023-12-08T22:55:50.301337+0000 mgr.smithi040.evuiyl (mgr.14180) 440 : cluster [DBG] pgmap v335: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:55:52.423 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:52.626 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:52 smithi040 bash[24841]: audit 2023-12-08T22:55:50.648555+0000 mgr.smithi040.evuiyl (mgr.14180) 441 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:52 smithi149 bash[28710]: audit 2023-12-08T22:55:50.648555+0000 mgr.smithi040.evuiyl (mgr.14180) 441 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:53.673 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:53 smithi040 bash[24841]: cluster 2023-12-08T22:55:52.302471+0000 mgr.smithi040.evuiyl (mgr.14180) 442 : cluster [DBG] pgmap v336: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:53 smithi149 bash[28710]: cluster 2023-12-08T22:55:52.302471+0000 mgr.smithi040.evuiyl (mgr.14180) 442 : cluster [DBG] pgmap v336: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:55.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:55 smithi040 bash[24841]: cluster 2023-12-08T22:55:54.303631+0000 mgr.smithi040.evuiyl (mgr.14180) 443 : cluster [DBG] pgmap v337: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:55.624 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:55:55.625 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:55:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:55 smithi149 bash[28710]: cluster 2023-12-08T22:55:54.303631+0000 mgr.smithi040.evuiyl (mgr.14180) 443 : cluster [DBG] pgmap v337: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:56.454 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:55:57.454 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:55:57.659 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:57 smithi040 bash[24841]: audit 2023-12-08T22:55:55.607336+0000 mgr.smithi040.evuiyl (mgr.14180) 444 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:57.660 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:57 smithi040 bash[24841]: cluster 2023-12-08T22:55:56.304910+0000 mgr.smithi040.evuiyl (mgr.14180) 445 : cluster [DBG] pgmap v338: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:57 smithi149 bash[28710]: audit 2023-12-08T22:55:55.607336+0000 mgr.smithi040.evuiyl (mgr.14180) 444 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:55:57.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:57 smithi149 bash[28710]: cluster 2023-12-08T22:55:56.304910+0000 mgr.smithi040.evuiyl (mgr.14180) 445 : cluster [DBG] pgmap v338: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:59.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:55:59 smithi040 bash[24841]: cluster 2023-12-08T22:55:58.305973+0000 mgr.smithi040.evuiyl (mgr.14180) 446 : cluster [DBG] pgmap v339: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:55:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:55:59 smithi149 bash[28710]: cluster 2023-12-08T22:55:58.305973+0000 mgr.smithi040.evuiyl (mgr.14180) 446 : cluster [DBG] pgmap v339: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:00.833 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:00.833 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:01.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:01.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:01 smithi149 bash[28710]: cluster 2023-12-08T22:56:00.307299+0000 mgr.smithi040.evuiyl (mgr.14180) 447 : cluster [DBG] pgmap v340: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:01.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:01 smithi040 bash[24841]: cluster 2023-12-08T22:56:00.307299+0000 mgr.smithi040.evuiyl (mgr.14180) 447 : cluster [DBG] pgmap v340: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:02.657 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:02.671 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:02 smithi040 bash[24841]: audit 2023-12-08T22:56:00.816837+0000 mgr.smithi040.evuiyl (mgr.14180) 448 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:02 smithi149 bash[28710]: audit 2023-12-08T22:56:00.816837+0000 mgr.smithi040.evuiyl (mgr.14180) 448 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:03 smithi040 bash[24841]: cluster 2023-12-08T22:56:02.308427+0000 mgr.smithi040.evuiyl (mgr.14180) 449 : cluster [DBG] pgmap v341: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:03 smithi149 bash[28710]: cluster 2023-12-08T22:56:02.308427+0000 mgr.smithi040.evuiyl (mgr.14180) 449 : cluster [DBG] pgmap v341: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:05.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:05 smithi040 bash[24841]: cluster 2023-12-08T22:56:04.309614+0000 mgr.smithi040.evuiyl (mgr.14180) 450 : cluster [DBG] pgmap v342: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:05 smithi149 bash[28710]: cluster 2023-12-08T22:56:04.309614+0000 mgr.smithi040.evuiyl (mgr.14180) 450 : cluster [DBG] pgmap v342: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:05.990 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:05.990 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:06.738 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:07.740 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:07.752 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:07 smithi040 bash[24841]: audit 2023-12-08T22:56:05.979542+0000 mgr.smithi040.evuiyl (mgr.14180) 451 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:07.752 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:07 smithi040 bash[24841]: cluster 2023-12-08T22:56:06.310876+0000 mgr.smithi040.evuiyl (mgr.14180) 452 : cluster [DBG] pgmap v343: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:07 smithi149 bash[28710]: audit 2023-12-08T22:56:05.979542+0000 mgr.smithi040.evuiyl (mgr.14180) 451 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:07 smithi149 bash[28710]: cluster 2023-12-08T22:56:06.310876+0000 mgr.smithi040.evuiyl (mgr.14180) 452 : cluster [DBG] pgmap v343: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:09.707 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:09 smithi040 bash[24841]: cluster 2023-12-08T22:56:08.312047+0000 mgr.smithi040.evuiyl (mgr.14180) 453 : cluster [DBG] pgmap v344: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:09 smithi149 bash[28710]: cluster 2023-12-08T22:56:08.312047+0000 mgr.smithi040.evuiyl (mgr.14180) 453 : cluster [DBG] pgmap v344: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:10.927 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:10.927 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:11.646 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:11.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:11 smithi149 bash[28710]: cluster 2023-12-08T22:56:10.313350+0000 mgr.smithi040.evuiyl (mgr.14180) 454 : cluster [DBG] pgmap v345: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:11 smithi040 bash[24841]: cluster 2023-12-08T22:56:10.313350+0000 mgr.smithi040.evuiyl (mgr.14180) 454 : cluster [DBG] pgmap v345: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:12.647 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:12.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:12 smithi040 bash[24841]: audit 2023-12-08T22:56:10.912126+0000 mgr.smithi040.evuiyl (mgr.14180) 455 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:12.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:12 smithi149 bash[28710]: audit 2023-12-08T22:56:10.912126+0000 mgr.smithi040.evuiyl (mgr.14180) 455 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:13.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:13 smithi040 bash[24841]: cluster 2023-12-08T22:56:12.314553+0000 mgr.smithi040.evuiyl (mgr.14180) 456 : cluster [DBG] pgmap v346: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:13 smithi149 bash[28710]: cluster 2023-12-08T22:56:12.314553+0000 mgr.smithi040.evuiyl (mgr.14180) 456 : cluster [DBG] pgmap v346: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:15.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:15 smithi040 bash[24841]: cluster 2023-12-08T22:56:14.315853+0000 mgr.smithi040.evuiyl (mgr.14180) 457 : cluster [DBG] pgmap v347: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:15.782 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:15.783 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:15 smithi149 bash[28710]: cluster 2023-12-08T22:56:14.315853+0000 mgr.smithi040.evuiyl (mgr.14180) 457 : cluster [DBG] pgmap v347: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:16.550 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:17.551 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:17 smithi040 bash[24841]: audit 2023-12-08T22:56:15.766477+0000 mgr.smithi040.evuiyl (mgr.14180) 458 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:17 smithi040 bash[24841]: cluster 2023-12-08T22:56:16.317119+0000 mgr.smithi040.evuiyl (mgr.14180) 459 : cluster [DBG] pgmap v348: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:17 smithi149 bash[28710]: audit 2023-12-08T22:56:15.766477+0000 mgr.smithi040.evuiyl (mgr.14180) 458 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:17 smithi149 bash[28710]: cluster 2023-12-08T22:56:16.317119+0000 mgr.smithi040.evuiyl (mgr.14180) 459 : cluster [DBG] pgmap v348: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:18.726 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:18 smithi040 bash[24841]: audit 2023-12-08T22:56:18.286317+0000 mon.smithi040 (mon.0) 758 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:56:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:18 smithi149 bash[28710]: audit 2023-12-08T22:56:18.286317+0000 mon.smithi040 (mon.0) 758 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:56:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:19 smithi040 bash[24841]: cluster 2023-12-08T22:56:18.318240+0000 mgr.smithi040.evuiyl (mgr.14180) 460 : cluster [DBG] pgmap v349: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:19.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:19 smithi149 bash[28710]: cluster 2023-12-08T22:56:18.318240+0000 mgr.smithi040.evuiyl (mgr.14180) 460 : cluster [DBG] pgmap v349: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:20.841 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:20.841 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:55:09.677608Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:55:08.253419Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:55:09.677818Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:55:08.255324Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:55:08.253756Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:55:08.253989Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:55:08.255538Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:55:08.254213Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:55:08.254430Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:55:09.678023Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:21.640 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:21.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:21 smithi149 bash[28710]: cluster 2023-12-08T22:56:20.319596+0000 mgr.smithi040.evuiyl (mgr.14180) 461 : cluster [DBG] pgmap v350: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:21 smithi040 bash[24841]: cluster 2023-12-08T22:56:20.319596+0000 mgr.smithi040.evuiyl (mgr.14180) 461 : cluster [DBG] pgmap v350: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:22.640 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:22.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:22 smithi040 bash[24841]: audit 2023-12-08T22:56:20.825222+0000 mgr.smithi040.evuiyl (mgr.14180) 462 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:22 smithi149 bash[28710]: audit 2023-12-08T22:56:20.825222+0000 mgr.smithi040.evuiyl (mgr.14180) 462 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:23.751 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:23 smithi040 bash[24841]: cluster 2023-12-08T22:56:22.320776+0000 mgr.smithi040.evuiyl (mgr.14180) 463 : cluster [DBG] pgmap v351: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:23 smithi149 bash[28710]: cluster 2023-12-08T22:56:22.320776+0000 mgr.smithi040.evuiyl (mgr.14180) 463 : cluster [DBG] pgmap v351: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:25.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:23.877036+0000 mon.smithi040 (mon.0) 759 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: cluster 2023-12-08T22:56:24.322178+0000 mgr.smithi040.evuiyl (mgr.14180) 464 : cluster [DBG] pgmap v352: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.343896+0000 mon.smithi040 (mon.0) 760 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.625938+0000 mon.smithi040 (mon.0) 761 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.627770+0000 mon.smithi040 (mon.0) 762 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.637059+0000 mon.smithi040 (mon.0) 763 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.643890+0000 mon.smithi040 (mon.0) 764 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:56:25.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:24 smithi040 bash[24841]: audit 2023-12-08T22:56:24.657461+0000 mon.smithi040 (mon.0) 765 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:23.877036+0000 mon.smithi040 (mon.0) 759 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: cluster 2023-12-08T22:56:24.322178+0000 mgr.smithi040.evuiyl (mgr.14180) 464 : cluster [DBG] pgmap v352: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.343896+0000 mon.smithi040 (mon.0) 760 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.625938+0000 mon.smithi040 (mon.0) 761 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.627770+0000 mon.smithi040 (mon.0) 762 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.637059+0000 mon.smithi040 (mon.0) 763 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.643890+0000 mon.smithi040 (mon.0) 764 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:56:25.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:24 smithi149 bash[28710]: audit 2023-12-08T22:56:24.657461+0000 mon.smithi040 (mon.0) 765 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:25.852 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:25.852 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:54:02.680703Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ctdfug on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:26.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:25 smithi040 bash[24841]: cluster 2023-12-08T22:56:24.638045+0000 mgr.smithi040.evuiyl (mgr.14180) 465 : cluster [DBG] pgmap v353: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:26.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:25 smithi040 bash[24841]: cephadm 2023-12-08T22:56:24.661246+0000 mgr.smithi040.evuiyl (mgr.14180) 466 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.goepgc on smithi149 2023-12-08T22:56:26.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:25 smithi040 bash[24841]: cluster 2023-12-08T22:56:24.874729+0000 mon.smithi040 (mon.0) 766 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:56:26.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:25 smithi040 bash[24841]: cluster 2023-12-08T22:56:24.874799+0000 mon.smithi040 (mon.0) 767 : cluster [INF] Cluster is now healthy 2023-12-08T22:56:26.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:25 smithi149 bash[28710]: cluster 2023-12-08T22:56:24.638045+0000 mgr.smithi040.evuiyl (mgr.14180) 465 : cluster [DBG] pgmap v353: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:26.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:25 smithi149 bash[28710]: cephadm 2023-12-08T22:56:24.661246+0000 mgr.smithi040.evuiyl (mgr.14180) 466 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.goepgc on smithi149 2023-12-08T22:56:26.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:25 smithi149 bash[28710]: cluster 2023-12-08T22:56:24.874729+0000 mon.smithi040 (mon.0) 766 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:56:26.315 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:25 smithi149 bash[28710]: cluster 2023-12-08T22:56:24.874799+0000 mon.smithi040 (mon.0) 767 : cluster [INF] Cluster is now healthy 2023-12-08T22:56:26.603 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:27.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:26 smithi040 bash[24841]: audit 2023-12-08T22:56:25.836375+0000 mgr.smithi040.evuiyl (mgr.14180) 467 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:27.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:26 smithi149 bash[28710]: audit 2023-12-08T22:56:25.836375+0000 mgr.smithi040.evuiyl (mgr.14180) 467 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:27.604 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:28.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:28 smithi149 bash[28710]: cluster 2023-12-08T22:56:26.639102+0000 mgr.smithi040.evuiyl (mgr.14180) 468 : cluster [DBG] pgmap v354: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:28.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:28 smithi040 bash[24841]: cluster 2023-12-08T22:56:26.639102+0000 mgr.smithi040.evuiyl (mgr.14180) 468 : cluster [DBG] pgmap v354: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: cephadm 2023-12-08T22:56:28.430279+0000 mgr.smithi040.evuiyl (mgr.14180) 469 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: cephadm 2023-12-08T22:56:28.430861+0000 mgr.smithi040.evuiyl (mgr.14180) 470 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: audit 2023-12-08T22:56:28.431386+0000 mon.smithi040 (mon.0) 768 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.goepgc"}]: dispatch 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: cephadm 2023-12-08T22:56:28.432853+0000 mgr.smithi040.evuiyl (mgr.14180) 471 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:29 smithi040 bash[24841]: cephadm 2023-12-08T22:56:28.438333+0000 mgr.smithi040.evuiyl (mgr.14180) 472 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.hmwqmo on smithi040 2023-12-08T22:56:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: cephadm 2023-12-08T22:56:28.430279+0000 mgr.smithi040.evuiyl (mgr.14180) 469 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:56:29.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: cephadm 2023-12-08T22:56:28.430861+0000 mgr.smithi040.evuiyl (mgr.14180) 470 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: audit 2023-12-08T22:56:28.431386+0000 mon.smithi040 (mon.0) 768 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.goepgc"}]: dispatch 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: cephadm 2023-12-08T22:56:28.432853+0000 mgr.smithi040.evuiyl (mgr.14180) 471 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.goepgc ... 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:29.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:29 smithi149 bash[28710]: cephadm 2023-12-08T22:56:28.438333+0000 mgr.smithi040.evuiyl (mgr.14180) 472 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.hmwqmo on smithi040 2023-12-08T22:56:30.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:30 smithi149 bash[28710]: cluster 2023-12-08T22:56:28.639686+0000 mgr.smithi040.evuiyl (mgr.14180) 473 : cluster [DBG] pgmap v355: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:30.680 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:30 smithi040 bash[24841]: cluster 2023-12-08T22:56:28.639686+0000 mgr.smithi040.evuiyl (mgr.14180) 473 : cluster [DBG] pgmap v355: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:31.058 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:31.058 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:13.868062Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.jtjhns on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-jtjhns\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.jtjhns\nDeploy daemon haproxy.nfs.foo.smithi149.jtjhns ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.278318Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.qhbxwr on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-qhbxwr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.qhbxwr\nDeploy daemon haproxy.nfs.foo.smithi040.qhbxwr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:55:18.280215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.fzasor on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:31.892 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:32.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:32 smithi040 bash[24841]: cluster 2023-12-08T22:56:30.640299+0000 mgr.smithi040.evuiyl (mgr.14180) 474 : cluster [DBG] pgmap v356: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:32.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:32 smithi040 bash[24841]: audit 2023-12-08T22:56:31.042287+0000 mgr.smithi040.evuiyl (mgr.14180) 475 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:32.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:32 smithi040 bash[24841]: audit 2023-12-08T22:56:32.222445+0000 mon.smithi040 (mon.0) 769 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.hmwqmo"}]: dispatch 2023-12-08T22:56:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:32 smithi149 bash[28710]: cluster 2023-12-08T22:56:30.640299+0000 mgr.smithi040.evuiyl (mgr.14180) 474 : cluster [DBG] pgmap v356: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:56:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:32 smithi149 bash[28710]: audit 2023-12-08T22:56:31.042287+0000 mgr.smithi040.evuiyl (mgr.14180) 475 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:32.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:32 smithi149 bash[28710]: audit 2023-12-08T22:56:32.222445+0000 mon.smithi040 (mon.0) 769 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.hmwqmo"}]: dispatch 2023-12-08T22:56:32.893 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:33.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cephadm 2023-12-08T22:56:32.221056+0000 mgr.smithi040.evuiyl (mgr.14180) 476 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:56:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cephadm 2023-12-08T22:56:32.221662+0000 mgr.smithi040.evuiyl (mgr.14180) 477 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cephadm 2023-12-08T22:56:32.224059+0000 mgr.smithi040.evuiyl (mgr.14180) 478 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cephadm 2023-12-08T22:56:32.227138+0000 mgr.smithi040.evuiyl (mgr.14180) 479 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:56:33.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cephadm 2023-12-08T22:56:32.230083+0000 mgr.smithi040.evuiyl (mgr.14180) 480 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:56:33.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cluster 2023-12-08T22:56:32.231252+0000 mgr.smithi040.evuiyl (mgr.14180) 481 : cluster [DBG] pgmap v357: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T22:56:33.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:33 smithi040 bash[24841]: cluster 2023-12-08T22:56:32.291869+0000 mon.smithi040 (mon.0) 770 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cephadm 2023-12-08T22:56:32.221056+0000 mgr.smithi040.evuiyl (mgr.14180) 476 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cephadm 2023-12-08T22:56:32.221662+0000 mgr.smithi040.evuiyl (mgr.14180) 477 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cephadm 2023-12-08T22:56:32.224059+0000 mgr.smithi040.evuiyl (mgr.14180) 478 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hmwqmo ... 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:56:33.568 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:56:33.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cephadm 2023-12-08T22:56:32.227138+0000 mgr.smithi040.evuiyl (mgr.14180) 479 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:56:33.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cephadm 2023-12-08T22:56:32.230083+0000 mgr.smithi040.evuiyl (mgr.14180) 480 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:56:33.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cluster 2023-12-08T22:56:32.231252+0000 mgr.smithi040.evuiyl (mgr.14180) 481 : cluster [DBG] pgmap v357: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T22:56:33.569 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:33 smithi149 bash[28710]: cluster 2023-12-08T22:56:32.291869+0000 mon.smithi040 (mon.0) 770 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:56:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:35 smithi040 bash[24841]: cluster 2023-12-08T22:56:34.232366+0000 mgr.smithi040.evuiyl (mgr.14180) 482 : cluster [DBG] pgmap v358: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T22:56:35.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:35 smithi040 bash[24841]: audit 2023-12-08T22:56:34.551333+0000 mon.smithi040 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:35 smithi149 bash[28710]: cluster 2023-12-08T22:56:34.232366+0000 mgr.smithi040.evuiyl (mgr.14180) 482 : cluster [DBG] pgmap v358: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T22:56:35.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:35 smithi149 bash[28710]: audit 2023-12-08T22:56:34.551333+0000 mon.smithi040 (mon.0) 771 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:56:36.218 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:36.218 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:36.964 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:37.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:37 smithi040 bash[24841]: audit 2023-12-08T22:56:36.202424+0000 mgr.smithi040.evuiyl (mgr.14180) 483 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:37.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:37 smithi040 bash[24841]: cluster 2023-12-08T22:56:36.233556+0000 mgr.smithi040.evuiyl (mgr.14180) 484 : cluster [DBG] pgmap v359: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:37 smithi149 bash[28710]: audit 2023-12-08T22:56:36.202424+0000 mgr.smithi040.evuiyl (mgr.14180) 483 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:37 smithi149 bash[28710]: cluster 2023-12-08T22:56:36.233556+0000 mgr.smithi040.evuiyl (mgr.14180) 484 : cluster [DBG] pgmap v359: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:37.965 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:39.458 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:39 smithi040 bash[24841]: cluster 2023-12-08T22:56:38.234425+0000 mgr.smithi040.evuiyl (mgr.14180) 485 : cluster [DBG] pgmap v360: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:39 smithi149 bash[28710]: cluster 2023-12-08T22:56:38.234425+0000 mgr.smithi040.evuiyl (mgr.14180) 485 : cluster [DBG] pgmap v360: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:41.281 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:41.281 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:41.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:41 smithi149 bash[28710]: cluster 2023-12-08T22:56:40.235889+0000 mgr.smithi040.evuiyl (mgr.14180) 486 : cluster [DBG] pgmap v361: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 353 B/s rd, 0 op/s 2023-12-08T22:56:41.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:41 smithi040 bash[24841]: cluster 2023-12-08T22:56:40.235889+0000 mgr.smithi040.evuiyl (mgr.14180) 486 : cluster [DBG] pgmap v361: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 353 B/s rd, 0 op/s 2023-12-08T22:56:42.006 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:42.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:42 smithi040 bash[24841]: audit 2023-12-08T22:56:41.261507+0000 mgr.smithi040.evuiyl (mgr.14180) 487 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:42 smithi149 bash[28710]: audit 2023-12-08T22:56:41.261507+0000 mgr.smithi040.evuiyl (mgr.14180) 487 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:43.007 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:43.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:43 smithi040 bash[24841]: cluster 2023-12-08T22:56:42.237083+0000 mgr.smithi040.evuiyl (mgr.14180) 488 : cluster [DBG] pgmap v362: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:43 smithi149 bash[28710]: cluster 2023-12-08T22:56:42.237083+0000 mgr.smithi040.evuiyl (mgr.14180) 488 : cluster [DBG] pgmap v362: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2023-12-08T22:56:45.743 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:45 smithi040 bash[24841]: cluster 2023-12-08T22:56:44.237935+0000 mgr.smithi040.evuiyl (mgr.14180) 489 : cluster [DBG] pgmap v363: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:45.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:45 smithi149 bash[28710]: cluster 2023-12-08T22:56:44.237935+0000 mgr.smithi040.evuiyl (mgr.14180) 489 : cluster [DBG] pgmap v363: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:46.175 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:46.175 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:46.995 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:47.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:47 smithi040 bash[24841]: audit 2023-12-08T22:56:46.159641+0000 mgr.smithi040.evuiyl (mgr.14180) 490 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:47.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:47 smithi040 bash[24841]: cluster 2023-12-08T22:56:46.238992+0000 mgr.smithi040.evuiyl (mgr.14180) 491 : cluster [DBG] pgmap v364: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:47.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:47 smithi149 bash[28710]: audit 2023-12-08T22:56:46.159641+0000 mgr.smithi040.evuiyl (mgr.14180) 490 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:47.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:47 smithi149 bash[28710]: cluster 2023-12-08T22:56:46.238992+0000 mgr.smithi040.evuiyl (mgr.14180) 491 : cluster [DBG] pgmap v364: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:47.996 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:49.473 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:49 smithi040 bash[24841]: cluster 2023-12-08T22:56:48.240084+0000 mgr.smithi040.evuiyl (mgr.14180) 492 : cluster [DBG] pgmap v365: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:49 smithi149 bash[28710]: cluster 2023-12-08T22:56:48.240084+0000 mgr.smithi040.evuiyl (mgr.14180) 492 : cluster [DBG] pgmap v365: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:51.393 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:51.394 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:51.630 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:51 smithi040 bash[24841]: cluster 2023-12-08T22:56:50.240847+0000 mgr.smithi040.evuiyl (mgr.14180) 493 : cluster [DBG] pgmap v366: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:51.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:51 smithi149 bash[28710]: cluster 2023-12-08T22:56:50.240847+0000 mgr.smithi040.evuiyl (mgr.14180) 493 : cluster [DBG] pgmap v366: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:56:52.184 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:52.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:52 smithi040 bash[24841]: audit 2023-12-08T22:56:51.378321+0000 mgr.smithi040.evuiyl (mgr.14180) 494 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:52.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:52 smithi149 bash[28710]: audit 2023-12-08T22:56:51.378321+0000 mgr.smithi040.evuiyl (mgr.14180) 494 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:53.186 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:53.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:53 smithi040 bash[24841]: cluster 2023-12-08T22:56:52.241976+0000 mgr.smithi040.evuiyl (mgr.14180) 495 : cluster [DBG] pgmap v367: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:53 smithi149 bash[28710]: cluster 2023-12-08T22:56:52.241976+0000 mgr.smithi040.evuiyl (mgr.14180) 495 : cluster [DBG] pgmap v367: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:55.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:55 smithi040 bash[24841]: cluster 2023-12-08T22:56:54.242890+0000 mgr.smithi040.evuiyl (mgr.14180) 496 : cluster [DBG] pgmap v368: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:55 smithi149 bash[28710]: cluster 2023-12-08T22:56:54.242890+0000 mgr.smithi040.evuiyl (mgr.14180) 496 : cluster [DBG] pgmap v368: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:56.487 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:56:56.487 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:56:57.266 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:56:57.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:57 smithi040 bash[24841]: cluster 2023-12-08T22:56:56.243557+0000 mgr.smithi040.evuiyl (mgr.14180) 497 : cluster [DBG] pgmap v369: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:57 smithi149 bash[28710]: cluster 2023-12-08T22:56:56.243557+0000 mgr.smithi040.evuiyl (mgr.14180) 497 : cluster [DBG] pgmap v369: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:58.266 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:56:58.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:58 smithi040 bash[24841]: audit 2023-12-08T22:56:56.471107+0000 mgr.smithi040.evuiyl (mgr.14180) 498 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:58 smithi149 bash[28710]: audit 2023-12-08T22:56:56.471107+0000 mgr.smithi040.evuiyl (mgr.14180) 498 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:56:59.722 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:56:59 smithi040 bash[24841]: cluster 2023-12-08T22:56:58.244582+0000 mgr.smithi040.evuiyl (mgr.14180) 499 : cluster [DBG] pgmap v370: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:56:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:56:59 smithi149 bash[28710]: cluster 2023-12-08T22:56:58.244582+0000 mgr.smithi040.evuiyl (mgr.14180) 499 : cluster [DBG] pgmap v370: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:01.505 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:01.505 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:01.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:01 smithi149 bash[28710]: cluster 2023-12-08T22:57:00.245698+0000 mgr.smithi040.evuiyl (mgr.14180) 500 : cluster [DBG] pgmap v371: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:01.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:01 smithi040 bash[24841]: cluster 2023-12-08T22:57:00.245698+0000 mgr.smithi040.evuiyl (mgr.14180) 500 : cluster [DBG] pgmap v371: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:02.307 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:03.309 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:03 smithi040 bash[24841]: audit 2023-12-08T22:57:01.493418+0000 mgr.smithi040.evuiyl (mgr.14180) 501 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:03 smithi040 bash[24841]: cluster 2023-12-08T22:57:02.246906+0000 mgr.smithi040.evuiyl (mgr.14180) 502 : cluster [DBG] pgmap v372: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:03 smithi149 bash[28710]: audit 2023-12-08T22:57:01.493418+0000 mgr.smithi040.evuiyl (mgr.14180) 501 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:03 smithi149 bash[28710]: cluster 2023-12-08T22:57:02.246906+0000 mgr.smithi040.evuiyl (mgr.14180) 502 : cluster [DBG] pgmap v372: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:05.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:05 smithi040 bash[24841]: cluster 2023-12-08T22:57:04.248108+0000 mgr.smithi040.evuiyl (mgr.14180) 503 : cluster [DBG] pgmap v373: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:05 smithi149 bash[28710]: cluster 2023-12-08T22:57:04.248108+0000 mgr.smithi040.evuiyl (mgr.14180) 503 : cluster [DBG] pgmap v373: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:06.355 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:06.355 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:07.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:07.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:07 smithi040 bash[24841]: cluster 2023-12-08T22:57:06.249268+0000 mgr.smithi040.evuiyl (mgr.14180) 504 : cluster [DBG] pgmap v374: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:07.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:07 smithi040 bash[24841]: audit 2023-12-08T22:57:06.343745+0000 mgr.smithi040.evuiyl (mgr.14180) 505 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:07 smithi149 bash[28710]: cluster 2023-12-08T22:57:06.249268+0000 mgr.smithi040.evuiyl (mgr.14180) 504 : cluster [DBG] pgmap v374: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:07 smithi149 bash[28710]: audit 2023-12-08T22:57:06.343745+0000 mgr.smithi040.evuiyl (mgr.14180) 505 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:08.193 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:09.688 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:09 smithi040 bash[24841]: cluster 2023-12-08T22:57:08.250318+0000 mgr.smithi040.evuiyl (mgr.14180) 506 : cluster [DBG] pgmap v375: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:09 smithi149 bash[28710]: cluster 2023-12-08T22:57:08.250318+0000 mgr.smithi040.evuiyl (mgr.14180) 506 : cluster [DBG] pgmap v375: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:11.585 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:11.585 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:11.743 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:11 smithi149 bash[28710]: cluster 2023-12-08T22:57:10.251155+0000 mgr.smithi040.evuiyl (mgr.14180) 507 : cluster [DBG] pgmap v376: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:11.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:11 smithi040 bash[24841]: cluster 2023-12-08T22:57:10.251155+0000 mgr.smithi040.evuiyl (mgr.14180) 507 : cluster [DBG] pgmap v376: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:12.319 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:13.320 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:13.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:13 smithi040 bash[24841]: audit 2023-12-08T22:57:11.573228+0000 mgr.smithi040.evuiyl (mgr.14180) 508 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:13.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:13 smithi040 bash[24841]: cluster 2023-12-08T22:57:12.252334+0000 mgr.smithi040.evuiyl (mgr.14180) 509 : cluster [DBG] pgmap v377: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:13 smithi149 bash[28710]: audit 2023-12-08T22:57:11.573228+0000 mgr.smithi040.evuiyl (mgr.14180) 508 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:13 smithi149 bash[28710]: cluster 2023-12-08T22:57:12.252334+0000 mgr.smithi040.evuiyl (mgr.14180) 509 : cluster [DBG] pgmap v377: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:15.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:15 smithi040 bash[24841]: cluster 2023-12-08T22:57:14.253140+0000 mgr.smithi040.evuiyl (mgr.14180) 510 : cluster [DBG] pgmap v378: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:15 smithi149 bash[28710]: cluster 2023-12-08T22:57:14.253140+0000 mgr.smithi040.evuiyl (mgr.14180) 510 : cluster [DBG] pgmap v378: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:16.303 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:16.303 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:17.010 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:17 smithi040 bash[24841]: cluster 2023-12-08T22:57:16.254403+0000 mgr.smithi040.evuiyl (mgr.14180) 511 : cluster [DBG] pgmap v379: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:17 smithi040 bash[24841]: audit 2023-12-08T22:57:16.291528+0000 mgr.smithi040.evuiyl (mgr.14180) 512 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:17 smithi149 bash[28710]: cluster 2023-12-08T22:57:16.254403+0000 mgr.smithi040.evuiyl (mgr.14180) 511 : cluster [DBG] pgmap v379: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:17 smithi149 bash[28710]: audit 2023-12-08T22:57:16.291528+0000 mgr.smithi040.evuiyl (mgr.14180) 512 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:18.011 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:19.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:19 smithi040 bash[24841]: cluster 2023-12-08T22:57:18.255086+0000 mgr.smithi040.evuiyl (mgr.14180) 513 : cluster [DBG] pgmap v380: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:19.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:19 smithi149 bash[28710]: cluster 2023-12-08T22:57:18.255086+0000 mgr.smithi040.evuiyl (mgr.14180) 513 : cluster [DBG] pgmap v380: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:21.283 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:21.284 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:21 smithi149 bash[28710]: cluster 2023-12-08T22:57:20.256394+0000 mgr.smithi040.evuiyl (mgr.14180) 514 : cluster [DBG] pgmap v381: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:21.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:21 smithi040 bash[24841]: cluster 2023-12-08T22:57:20.256394+0000 mgr.smithi040.evuiyl (mgr.14180) 514 : cluster [DBG] pgmap v381: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:22.009 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:22.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:22 smithi040 bash[24841]: audit 2023-12-08T22:57:21.268515+0000 mgr.smithi040.evuiyl (mgr.14180) 515 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:22 smithi149 bash[28710]: audit 2023-12-08T22:57:21.268515+0000 mgr.smithi040.evuiyl (mgr.14180) 515 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:23.010 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:23.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:23 smithi040 bash[24841]: cluster 2023-12-08T22:57:22.257588+0000 mgr.smithi040.evuiyl (mgr.14180) 516 : cluster [DBG] pgmap v382: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:23.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:23 smithi149 bash[28710]: cluster 2023-12-08T22:57:22.257588+0000 mgr.smithi040.evuiyl (mgr.14180) 516 : cluster [DBG] pgmap v382: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:24 smithi040 bash[24841]: cluster 2023-12-08T22:57:24.258862+0000 mgr.smithi040.evuiyl (mgr.14180) 517 : cluster [DBG] pgmap v383: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:24 smithi149 bash[28710]: cluster 2023-12-08T22:57:24.258862+0000 mgr.smithi040.evuiyl (mgr.14180) 517 : cluster [DBG] pgmap v383: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:26.255 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:26.255 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:27.026 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:27.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:27 smithi040 bash[24841]: audit 2023-12-08T22:57:26.239568+0000 mgr.smithi040.evuiyl (mgr.14180) 518 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:27.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:27 smithi040 bash[24841]: cluster 2023-12-08T22:57:26.259835+0000 mgr.smithi040.evuiyl (mgr.14180) 519 : cluster [DBG] pgmap v384: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:27 smithi149 bash[28710]: audit 2023-12-08T22:57:26.239568+0000 mgr.smithi040.evuiyl (mgr.14180) 518 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:27.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:27 smithi149 bash[28710]: cluster 2023-12-08T22:57:26.259835+0000 mgr.smithi040.evuiyl (mgr.14180) 519 : cluster [DBG] pgmap v384: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:28.028 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:29.651 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:29 smithi040 bash[24841]: cluster 2023-12-08T22:57:28.260850+0000 mgr.smithi040.evuiyl (mgr.14180) 520 : cluster [DBG] pgmap v385: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:29.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:29 smithi149 bash[28710]: cluster 2023-12-08T22:57:28.260850+0000 mgr.smithi040.evuiyl (mgr.14180) 520 : cluster [DBG] pgmap v385: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:31.435 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:31.435 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:31.685 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:31 smithi040 bash[24841]: cluster 2023-12-08T22:57:30.261792+0000 mgr.smithi040.evuiyl (mgr.14180) 521 : cluster [DBG] pgmap v386: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:31.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:31 smithi149 bash[28710]: cluster 2023-12-08T22:57:30.261792+0000 mgr.smithi040.evuiyl (mgr.14180) 521 : cluster [DBG] pgmap v386: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:57:32.242 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:32.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:32 smithi040 bash[24841]: audit 2023-12-08T22:57:31.420015+0000 mgr.smithi040.evuiyl (mgr.14180) 522 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:32.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:32 smithi040 bash[24841]: audit 2023-12-08T22:57:32.234795+0000 mon.smithi040 (mon.0) 772 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:57:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:32 smithi149 bash[28710]: audit 2023-12-08T22:57:31.420015+0000 mgr.smithi040.evuiyl (mgr.14180) 522 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:32 smithi149 bash[28710]: audit 2023-12-08T22:57:32.234795+0000 mon.smithi040 (mon.0) 772 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:57:33.243 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: cluster 2023-12-08T22:57:32.262852+0000 mgr.smithi040.evuiyl (mgr.14180) 523 : cluster [DBG] pgmap v387: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.507914+0000 mon.smithi040 (mon.0) 773 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.807023+0000 mon.smithi040 (mon.0) 774 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.809528+0000 mon.smithi040 (mon.0) 775 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.818464+0000 mon.smithi040 (mon.0) 776 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.825923+0000 mon.smithi040 (mon.0) 777 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:57:33.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:33 smithi040 bash[24841]: audit 2023-12-08T22:57:32.841058+0000 mon.smithi040 (mon.0) 778 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: cluster 2023-12-08T22:57:32.262852+0000 mgr.smithi040.evuiyl (mgr.14180) 523 : cluster [DBG] pgmap v387: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.507914+0000 mon.smithi040 (mon.0) 773 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.807023+0000 mon.smithi040 (mon.0) 774 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.809528+0000 mon.smithi040 (mon.0) 775 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.818464+0000 mon.smithi040 (mon.0) 776 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.825923+0000 mon.smithi040 (mon.0) 777 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:57:33.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:33 smithi149 bash[28710]: audit 2023-12-08T22:57:32.841058+0000 mon.smithi040 (mon.0) 778 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:34.608 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:34 smithi040 bash[24841]: cluster 2023-12-08T22:57:32.819333+0000 mgr.smithi040.evuiyl (mgr.14180) 524 : cluster [DBG] pgmap v388: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:34.608 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:34 smithi040 bash[24841]: cephadm 2023-12-08T22:57:32.846084+0000 mgr.smithi040.evuiyl (mgr.14180) 525 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.eljctq on smithi149 2023-12-08T22:57:34.608 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:34 smithi040 bash[24841]: cluster 2023-12-08T22:57:33.815940+0000 mon.smithi040 (mon.0) 779 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:57:34.608 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:34 smithi040 bash[24841]: cluster 2023-12-08T22:57:33.816041+0000 mon.smithi040 (mon.0) 780 : cluster [INF] Cluster is now healthy 2023-12-08T22:57:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:34 smithi149 bash[28710]: cluster 2023-12-08T22:57:32.819333+0000 mgr.smithi040.evuiyl (mgr.14180) 524 : cluster [DBG] pgmap v388: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:34 smithi149 bash[28710]: cephadm 2023-12-08T22:57:32.846084+0000 mgr.smithi040.evuiyl (mgr.14180) 525 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.eljctq on smithi149 2023-12-08T22:57:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:34 smithi149 bash[28710]: cluster 2023-12-08T22:57:33.815940+0000 mon.smithi040 (mon.0) 779 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:57:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:34 smithi149 bash[28710]: cluster 2023-12-08T22:57:33.816041+0000 mon.smithi040 (mon.0) 780 : cluster [INF] Cluster is now healthy 2023-12-08T22:57:36.490 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:36.491 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:55:18.281830Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.aqjpfi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:28.432544Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.goepgc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-goepgc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.goepgc\nDeploy daemon haproxy.nfs.foo.smithi149.goepgc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.223876Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hmwqmo on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hmwqmo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hmwqmo\nDeploy daemon haproxy.nfs.foo.smithi040.hmwqmo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:56:32.226980Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.jzpaul on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:36.717 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:36 smithi040 bash[24841]: cluster 2023-12-08T22:57:34.820390+0000 mgr.smithi040.evuiyl (mgr.14180) 526 : cluster [DBG] pgmap v389: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:36.809 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:36 smithi149 bash[28710]: cluster 2023-12-08T22:57:34.820390+0000 mgr.smithi040.evuiyl (mgr.14180) 526 : cluster [DBG] pgmap v389: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:37.272 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:37.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:37 smithi040 bash[24841]: audit 2023-12-08T22:57:36.474311+0000 mgr.smithi040.evuiyl (mgr.14180) 527 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:37.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:37 smithi040 bash[24841]: audit 2023-12-08T22:57:36.875216+0000 mon.smithi040 (mon.0) 781 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.eljctq"}]: dispatch 2023-12-08T22:57:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:37 smithi149 bash[28710]: audit 2023-12-08T22:57:36.474311+0000 mgr.smithi040.evuiyl (mgr.14180) 527 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:37 smithi149 bash[28710]: audit 2023-12-08T22:57:36.875216+0000 mon.smithi040 (mon.0) 781 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.eljctq"}]: dispatch 2023-12-08T22:57:38.273 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:38.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: cluster 2023-12-08T22:57:36.821429+0000 mgr.smithi040.evuiyl (mgr.14180) 528 : cluster [DBG] pgmap v390: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: cephadm 2023-12-08T22:57:36.874134+0000 mgr.smithi040.evuiyl (mgr.14180) 529 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:57:38.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: cephadm 2023-12-08T22:57:36.874629+0000 mgr.smithi040.evuiyl (mgr.14180) 530 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: cephadm 2023-12-08T22:57:36.876574+0000 mgr.smithi040.evuiyl (mgr.14180) 531 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:38 smithi040 bash[24841]: cephadm 2023-12-08T22:57:36.880685+0000 mgr.smithi040.evuiyl (mgr.14180) 532 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ejewrc on smithi040 2023-12-08T22:57:38.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: cluster 2023-12-08T22:57:36.821429+0000 mgr.smithi040.evuiyl (mgr.14180) 528 : cluster [DBG] pgmap v390: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:38.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: cephadm 2023-12-08T22:57:36.874134+0000 mgr.smithi040.evuiyl (mgr.14180) 529 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:57:38.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: cephadm 2023-12-08T22:57:36.874629+0000 mgr.smithi040.evuiyl (mgr.14180) 530 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: cephadm 2023-12-08T22:57:36.876574+0000 mgr.smithi040.evuiyl (mgr.14180) 531 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.eljctq ... 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:38.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:38.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:38.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:38.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:38 smithi149 bash[28710]: cephadm 2023-12-08T22:57:36.880685+0000 mgr.smithi040.evuiyl (mgr.14180) 532 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ejewrc on smithi040 2023-12-08T22:57:40.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:40 smithi149 bash[28710]: cluster 2023-12-08T22:57:38.822384+0000 mgr.smithi040.evuiyl (mgr.14180) 533 : cluster [DBG] pgmap v391: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:40.871 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:40 smithi040 bash[24841]: cluster 2023-12-08T22:57:38.822384+0000 mgr.smithi040.evuiyl (mgr.14180) 533 : cluster [DBG] pgmap v391: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:41.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:41 smithi149 bash[28710]: audit 2023-12-08T22:57:41.174799+0000 mon.smithi040 (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ejewrc"}]: dispatch 2023-12-08T22:57:41.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:41 smithi040 bash[24841]: audit 2023-12-08T22:57:41.174799+0000 mon.smithi040 (mon.0) 782 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ejewrc"}]: dispatch 2023-12-08T22:57:41.847 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:41.847 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:42.664 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:42.664 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cluster 2023-12-08T22:57:40.823329+0000 mgr.smithi040.evuiyl (mgr.14180) 534 : cluster [DBG] pgmap v392: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:42.664 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cephadm 2023-12-08T22:57:41.173542+0000 mgr.smithi040.evuiyl (mgr.14180) 535 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.664 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.664 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.665 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.666 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cephadm 2023-12-08T22:57:41.174162+0000 mgr.smithi040.evuiyl (mgr.14180) 536 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cephadm 2023-12-08T22:57:41.176137+0000 mgr.smithi040.evuiyl (mgr.14180) 537 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cephadm 2023-12-08T22:57:41.180298+0000 mgr.smithi040.evuiyl (mgr.14180) 538 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:57:42.667 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cephadm 2023-12-08T22:57:41.183667+0000 mgr.smithi040.evuiyl (mgr.14180) 539 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:57:42.668 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cluster 2023-12-08T22:57:41.184680+0000 mgr.smithi040.evuiyl (mgr.14180) 540 : cluster [DBG] pgmap v393: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 229 B/s rd, 0 op/s 2023-12-08T22:57:42.668 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:42 smithi040 bash[24841]: cluster 2023-12-08T22:57:41.367854+0000 mon.smithi040 (mon.0) 783 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:57:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cluster 2023-12-08T22:57:40.823329+0000 mgr.smithi040.evuiyl (mgr.14180) 534 : cluster [DBG] pgmap v392: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T22:57:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cephadm 2023-12-08T22:57:41.173542+0000 mgr.smithi040.evuiyl (mgr.14180) 535 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:57:42.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cephadm 2023-12-08T22:57:41.174162+0000 mgr.smithi040.evuiyl (mgr.14180) 536 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cephadm 2023-12-08T22:57:41.176137+0000 mgr.smithi040.evuiyl (mgr.14180) 537 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ejewrc ... 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:57:42.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:57:42.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cephadm 2023-12-08T22:57:41.180298+0000 mgr.smithi040.evuiyl (mgr.14180) 538 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:57:42.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cephadm 2023-12-08T22:57:41.183667+0000 mgr.smithi040.evuiyl (mgr.14180) 539 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:57:42.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cluster 2023-12-08T22:57:41.184680+0000 mgr.smithi040.evuiyl (mgr.14180) 540 : cluster [DBG] pgmap v393: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 229 B/s rd, 0 op/s 2023-12-08T22:57:42.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:42 smithi149 bash[28710]: cluster 2023-12-08T22:57:41.367854+0000 mon.smithi040 (mon.0) 783 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:57:43.665 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:43.682 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:43 smithi040 bash[24841]: audit 2023-12-08T22:57:41.830836+0000 mgr.smithi040.evuiyl (mgr.14180) 541 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:43.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:43 smithi149 bash[28710]: audit 2023-12-08T22:57:41.830836+0000 mgr.smithi040.evuiyl (mgr.14180) 541 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:44.759 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:44 smithi040 bash[24841]: cluster 2023-12-08T22:57:43.185874+0000 mgr.smithi040.evuiyl (mgr.14180) 542 : cluster [DBG] pgmap v394: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:44.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:44 smithi149 bash[28710]: cluster 2023-12-08T22:57:43.185874+0000 mgr.smithi040.evuiyl (mgr.14180) 542 : cluster [DBG] pgmap v394: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:46.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:45 smithi040 bash[24841]: audit 2023-12-08T22:57:44.595331+0000 mon.smithi040 (mon.0) 784 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:46.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:45 smithi040 bash[24841]: cluster 2023-12-08T22:57:45.187266+0000 mgr.smithi040.evuiyl (mgr.14180) 543 : cluster [DBG] pgmap v395: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:45 smithi149 bash[28710]: audit 2023-12-08T22:57:44.595331+0000 mon.smithi040 (mon.0) 784 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:57:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:45 smithi149 bash[28710]: cluster 2023-12-08T22:57:45.187266+0000 mgr.smithi040.evuiyl (mgr.14180) 543 : cluster [DBG] pgmap v395: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:47.007 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:47.008 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:47.796 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:48.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:48 smithi149 bash[28710]: audit 2023-12-08T22:57:46.991729+0000 mgr.smithi040.evuiyl (mgr.14180) 544 : audit [DBG] from='client.24607 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:48.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:48 smithi149 bash[28710]: cluster 2023-12-08T22:57:47.188484+0000 mgr.smithi040.evuiyl (mgr.14180) 545 : cluster [DBG] pgmap v396: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:48.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:48 smithi040 bash[24841]: audit 2023-12-08T22:57:46.991729+0000 mgr.smithi040.evuiyl (mgr.14180) 544 : audit [DBG] from='client.24607 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:48.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:48 smithi040 bash[24841]: cluster 2023-12-08T22:57:47.188484+0000 mgr.smithi040.evuiyl (mgr.14180) 545 : cluster [DBG] pgmap v396: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:48.797 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:50.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:50 smithi040 bash[24841]: cluster 2023-12-08T22:57:49.189697+0000 mgr.smithi040.evuiyl (mgr.14180) 546 : cluster [DBG] pgmap v397: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:50 smithi149 bash[28710]: cluster 2023-12-08T22:57:49.189697+0000 mgr.smithi040.evuiyl (mgr.14180) 546 : cluster [DBG] pgmap v397: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:51.915 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:51.915 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:52.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:52 smithi040 bash[24841]: cluster 2023-12-08T22:57:51.190950+0000 mgr.smithi040.evuiyl (mgr.14180) 547 : cluster [DBG] pgmap v398: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:52.698 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:52.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:52 smithi149 bash[28710]: cluster 2023-12-08T22:57:51.190950+0000 mgr.smithi040.evuiyl (mgr.14180) 547 : cluster [DBG] pgmap v398: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T22:57:53.699 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:53.711 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:53 smithi040 bash[24841]: audit 2023-12-08T22:57:51.903180+0000 mgr.smithi040.evuiyl (mgr.14180) 548 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:53.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:53 smithi149 bash[28710]: audit 2023-12-08T22:57:51.903180+0000 mgr.smithi040.evuiyl (mgr.14180) 548 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:54.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:54 smithi040 bash[24841]: cluster 2023-12-08T22:57:53.192078+0000 mgr.smithi040.evuiyl (mgr.14180) 549 : cluster [DBG] pgmap v399: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:54 smithi149 bash[28710]: cluster 2023-12-08T22:57:53.192078+0000 mgr.smithi040.evuiyl (mgr.14180) 549 : cluster [DBG] pgmap v399: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:56.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:56 smithi040 bash[24841]: cluster 2023-12-08T22:57:55.193472+0000 mgr.smithi040.evuiyl (mgr.14180) 550 : cluster [DBG] pgmap v400: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:56.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:56 smithi149 bash[28710]: cluster 2023-12-08T22:57:55.193472+0000 mgr.smithi040.evuiyl (mgr.14180) 550 : cluster [DBG] pgmap v400: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:56.918 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:57:56.918 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:57:57.699 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:57:58.700 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:57:58.712 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:58 smithi040 bash[24841]: audit 2023-12-08T22:57:56.902591+0000 mgr.smithi040.evuiyl (mgr.14180) 551 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:58.713 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:57:58 smithi040 bash[24841]: cluster 2023-12-08T22:57:57.194666+0000 mgr.smithi040.evuiyl (mgr.14180) 552 : cluster [DBG] pgmap v401: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:57:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:58 smithi149 bash[28710]: audit 2023-12-08T22:57:56.902591+0000 mgr.smithi040.evuiyl (mgr.14180) 551 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:57:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:57:58 smithi149 bash[28710]: cluster 2023-12-08T22:57:57.194666+0000 mgr.smithi040.evuiyl (mgr.14180) 552 : cluster [DBG] pgmap v401: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:00.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:00 smithi040 bash[24841]: cluster 2023-12-08T22:57:59.195815+0000 mgr.smithi040.evuiyl (mgr.14180) 553 : cluster [DBG] pgmap v402: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:00.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:00 smithi149 bash[28710]: cluster 2023-12-08T22:57:59.195815+0000 mgr.smithi040.evuiyl (mgr.14180) 553 : cluster [DBG] pgmap v402: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:01.982 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:01.982 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:02 smithi040 bash[24841]: cluster 2023-12-08T22:58:01.197006+0000 mgr.smithi040.evuiyl (mgr.14180) 554 : cluster [DBG] pgmap v403: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:02.777 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:02 smithi149 bash[28710]: cluster 2023-12-08T22:58:01.197006+0000 mgr.smithi040.evuiyl (mgr.14180) 554 : cluster [DBG] pgmap v403: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:03.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:03 smithi040 bash[24841]: audit 2023-12-08T22:58:01.964428+0000 mgr.smithi040.evuiyl (mgr.14180) 555 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:03.778 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:03 smithi149 bash[28710]: audit 2023-12-08T22:58:01.964428+0000 mgr.smithi040.evuiyl (mgr.14180) 555 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:04 smithi040 bash[24841]: cluster 2023-12-08T22:58:03.198193+0000 mgr.smithi040.evuiyl (mgr.14180) 556 : cluster [DBG] pgmap v404: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:04.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:04 smithi149 bash[28710]: cluster 2023-12-08T22:58:03.198193+0000 mgr.smithi040.evuiyl (mgr.14180) 556 : cluster [DBG] pgmap v404: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:06.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:06 smithi040 bash[24841]: cluster 2023-12-08T22:58:05.199609+0000 mgr.smithi040.evuiyl (mgr.14180) 557 : cluster [DBG] pgmap v405: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:06.799 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:06.799 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:06 smithi149 bash[28710]: cluster 2023-12-08T22:58:05.199609+0000 mgr.smithi040.evuiyl (mgr.14180) 557 : cluster [DBG] pgmap v405: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:07.533 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:08.534 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:08.737 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:08 smithi040 bash[24841]: audit 2023-12-08T22:58:06.784461+0000 mgr.smithi040.evuiyl (mgr.14180) 558 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:08.737 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:08 smithi040 bash[24841]: cluster 2023-12-08T22:58:07.200819+0000 mgr.smithi040.evuiyl (mgr.14180) 559 : cluster [DBG] pgmap v406: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:08.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:08 smithi149 bash[28710]: audit 2023-12-08T22:58:06.784461+0000 mgr.smithi040.evuiyl (mgr.14180) 558 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:08.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:08 smithi149 bash[28710]: cluster 2023-12-08T22:58:07.200819+0000 mgr.smithi040.evuiyl (mgr.14180) 559 : cluster [DBG] pgmap v406: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:10.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:10 smithi040 bash[24841]: cluster 2023-12-08T22:58:09.202025+0000 mgr.smithi040.evuiyl (mgr.14180) 560 : cluster [DBG] pgmap v407: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:10.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:10 smithi149 bash[28710]: cluster 2023-12-08T22:58:09.202025+0000 mgr.smithi040.evuiyl (mgr.14180) 560 : cluster [DBG] pgmap v407: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:11.794 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:11.795 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:12.545 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:12.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:12 smithi040 bash[24841]: cluster 2023-12-08T22:58:11.203241+0000 mgr.smithi040.evuiyl (mgr.14180) 561 : cluster [DBG] pgmap v408: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:12.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:12 smithi149 bash[28710]: cluster 2023-12-08T22:58:11.203241+0000 mgr.smithi040.evuiyl (mgr.14180) 561 : cluster [DBG] pgmap v408: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:13.546 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:13.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:13 smithi040 bash[24841]: audit 2023-12-08T22:58:11.782289+0000 mgr.smithi040.evuiyl (mgr.14180) 562 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:13 smithi149 bash[28710]: audit 2023-12-08T22:58:11.782289+0000 mgr.smithi040.evuiyl (mgr.14180) 562 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:14.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:14 smithi040 bash[24841]: cluster 2023-12-08T22:58:13.204393+0000 mgr.smithi040.evuiyl (mgr.14180) 563 : cluster [DBG] pgmap v409: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:14.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:14 smithi149 bash[28710]: cluster 2023-12-08T22:58:13.204393+0000 mgr.smithi040.evuiyl (mgr.14180) 563 : cluster [DBG] pgmap v409: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:16.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:16 smithi040 bash[24841]: cluster 2023-12-08T22:58:15.205771+0000 mgr.smithi040.evuiyl (mgr.14180) 564 : cluster [DBG] pgmap v410: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:16.588 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:16.589 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:16 smithi149 bash[28710]: cluster 2023-12-08T22:58:15.205771+0000 mgr.smithi040.evuiyl (mgr.14180) 564 : cluster [DBG] pgmap v410: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:17.334 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:18.334 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:18.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:18 smithi040 bash[24841]: audit 2023-12-08T22:58:16.571884+0000 mgr.smithi040.evuiyl (mgr.14180) 565 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:18.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:18 smithi040 bash[24841]: cluster 2023-12-08T22:58:17.206993+0000 mgr.smithi040.evuiyl (mgr.14180) 566 : cluster [DBG] pgmap v411: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:18.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:18 smithi149 bash[28710]: audit 2023-12-08T22:58:16.571884+0000 mgr.smithi040.evuiyl (mgr.14180) 565 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:18.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:18 smithi149 bash[28710]: cluster 2023-12-08T22:58:17.206993+0000 mgr.smithi040.evuiyl (mgr.14180) 566 : cluster [DBG] pgmap v411: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:20.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:20 smithi040 bash[24841]: cluster 2023-12-08T22:58:19.208188+0000 mgr.smithi040.evuiyl (mgr.14180) 567 : cluster [DBG] pgmap v412: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:20 smithi149 bash[28710]: cluster 2023-12-08T22:58:19.208188+0000 mgr.smithi040.evuiyl (mgr.14180) 567 : cluster [DBG] pgmap v412: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:21.347 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:21.347 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:22.116 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:22.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:22 smithi040 bash[24841]: cluster 2023-12-08T22:58:21.208927+0000 mgr.smithi040.evuiyl (mgr.14180) 568 : cluster [DBG] pgmap v413: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:22.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:22 smithi040 bash[24841]: audit 2023-12-08T22:58:21.331532+0000 mgr.smithi040.evuiyl (mgr.14180) 569 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:22.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:22 smithi149 bash[28710]: cluster 2023-12-08T22:58:21.208927+0000 mgr.smithi040.evuiyl (mgr.14180) 568 : cluster [DBG] pgmap v413: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:22.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:22 smithi149 bash[28710]: audit 2023-12-08T22:58:21.331532+0000 mgr.smithi040.evuiyl (mgr.14180) 569 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:23.117 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:24.510 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:24 smithi040 bash[24841]: cluster 2023-12-08T22:58:23.210032+0000 mgr.smithi040.evuiyl (mgr.14180) 570 : cluster [DBG] pgmap v414: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:24 smithi149 bash[28710]: cluster 2023-12-08T22:58:23.210032+0000 mgr.smithi040.evuiyl (mgr.14180) 570 : cluster [DBG] pgmap v414: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:26.218 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:26.218 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:26.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:26 smithi040 bash[24841]: cluster 2023-12-08T22:58:25.211414+0000 mgr.smithi040.evuiyl (mgr.14180) 571 : cluster [DBG] pgmap v415: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:26.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:26 smithi149 bash[28710]: cluster 2023-12-08T22:58:25.211414+0000 mgr.smithi040.evuiyl (mgr.14180) 571 : cluster [DBG] pgmap v415: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:26.993 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:27.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:27 smithi040 bash[24841]: audit 2023-12-08T22:58:26.201942+0000 mgr.smithi040.evuiyl (mgr.14180) 572 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:27.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:27 smithi149 bash[28710]: audit 2023-12-08T22:58:26.201942+0000 mgr.smithi040.evuiyl (mgr.14180) 572 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:27.994 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:28.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:28 smithi040 bash[24841]: cluster 2023-12-08T22:58:27.212704+0000 mgr.smithi040.evuiyl (mgr.14180) 573 : cluster [DBG] pgmap v416: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:28 smithi149 bash[28710]: cluster 2023-12-08T22:58:27.212704+0000 mgr.smithi040.evuiyl (mgr.14180) 573 : cluster [DBG] pgmap v416: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:30.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:30 smithi040 bash[24841]: cluster 2023-12-08T22:58:29.213680+0000 mgr.smithi040.evuiyl (mgr.14180) 574 : cluster [DBG] pgmap v417: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:30 smithi149 bash[28710]: cluster 2023-12-08T22:58:29.213680+0000 mgr.smithi040.evuiyl (mgr.14180) 574 : cluster [DBG] pgmap v417: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:31.269 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:31.270 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:32.038 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:32.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:32 smithi040 bash[24841]: cluster 2023-12-08T22:58:31.214858+0000 mgr.smithi040.evuiyl (mgr.14180) 575 : cluster [DBG] pgmap v418: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:32.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:32 smithi040 bash[24841]: audit 2023-12-08T22:58:31.257608+0000 mgr.smithi040.evuiyl (mgr.14180) 576 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:32 smithi149 bash[28710]: cluster 2023-12-08T22:58:31.214858+0000 mgr.smithi040.evuiyl (mgr.14180) 575 : cluster [DBG] pgmap v418: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:32 smithi149 bash[28710]: audit 2023-12-08T22:58:31.257608+0000 mgr.smithi040.evuiyl (mgr.14180) 576 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:33.039 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:34.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:34 smithi040 bash[24841]: cluster 2023-12-08T22:58:33.215920+0000 mgr.smithi040.evuiyl (mgr.14180) 577 : cluster [DBG] pgmap v419: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:34 smithi149 bash[28710]: cluster 2023-12-08T22:58:33.215920+0000 mgr.smithi040.evuiyl (mgr.14180) 577 : cluster [DBG] pgmap v419: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:36.249 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:36.249 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:36.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:36 smithi040 bash[24841]: cluster 2023-12-08T22:58:35.217306+0000 mgr.smithi040.evuiyl (mgr.14180) 578 : cluster [DBG] pgmap v420: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:36 smithi149 bash[28710]: cluster 2023-12-08T22:58:35.217306+0000 mgr.smithi040.evuiyl (mgr.14180) 578 : cluster [DBG] pgmap v420: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:37.054 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:37.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:37 smithi040 bash[24841]: audit 2023-12-08T22:58:36.232036+0000 mgr.smithi040.evuiyl (mgr.14180) 579 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:37 smithi149 bash[28710]: audit 2023-12-08T22:58:36.232036+0000 mgr.smithi040.evuiyl (mgr.14180) 579 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:38.056 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:38.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:38 smithi040 bash[24841]: cluster 2023-12-08T22:58:37.218602+0000 mgr.smithi040.evuiyl (mgr.14180) 580 : cluster [DBG] pgmap v421: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:38.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:38 smithi149 bash[28710]: cluster 2023-12-08T22:58:37.218602+0000 mgr.smithi040.evuiyl (mgr.14180) 580 : cluster [DBG] pgmap v421: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:40.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:40 smithi040 bash[24841]: cluster 2023-12-08T22:58:39.219391+0000 mgr.smithi040.evuiyl (mgr.14180) 581 : cluster [DBG] pgmap v422: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:40.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:40 smithi149 bash[28710]: cluster 2023-12-08T22:58:39.219391+0000 mgr.smithi040.evuiyl (mgr.14180) 581 : cluster [DBG] pgmap v422: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:58:41.226 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:41.227 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:56:32.229925Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.rkckyc on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:41.505 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.187590+0000 mon.smithi040 (mon.0) 785 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:58:41.505 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.210812+0000 mgr.smithi040.evuiyl (mgr.14180) 582 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:41.505 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: cluster 2023-12-08T22:58:41.220430+0000 mgr.smithi040.evuiyl (mgr.14180) 583 : cluster [DBG] pgmap v423: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:41.505 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.468558+0000 mon.smithi040 (mon.0) 786 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:58:41.505 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.469508+0000 mon.smithi040 (mon.0) 787 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:58:41.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.475740+0000 mon.smithi040 (mon.0) 788 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:41.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: cluster 2023-12-08T22:58:41.476495+0000 mgr.smithi040.evuiyl (mgr.14180) 584 : cluster [DBG] pgmap v424: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:41.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.480790+0000 mon.smithi040 (mon.0) 789 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:58:41.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:41 smithi040 bash[24841]: audit 2023-12-08T22:58:41.492197+0000 mon.smithi040 (mon.0) 790 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.187590+0000 mon.smithi040 (mon.0) 785 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.210812+0000 mgr.smithi040.evuiyl (mgr.14180) 582 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: cluster 2023-12-08T22:58:41.220430+0000 mgr.smithi040.evuiyl (mgr.14180) 583 : cluster [DBG] pgmap v423: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.468558+0000 mon.smithi040 (mon.0) 786 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.469508+0000 mon.smithi040 (mon.0) 787 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.475740+0000 mon.smithi040 (mon.0) 788 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: cluster 2023-12-08T22:58:41.476495+0000 mgr.smithi040.evuiyl (mgr.14180) 584 : cluster [DBG] pgmap v424: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.480790+0000 mon.smithi040 (mon.0) 789 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:58:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:41 smithi149 bash[28710]: audit 2023-12-08T22:58:41.492197+0000 mon.smithi040 (mon.0) 790 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:41.968 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:42.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:42 smithi040 bash[24841]: cluster 2023-12-08T22:58:41.492688+0000 mon.smithi040 (mon.0) 791 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:58:42.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:42 smithi040 bash[24841]: cluster 2023-12-08T22:58:41.492751+0000 mon.smithi040 (mon.0) 792 : cluster [INF] Cluster is now healthy 2023-12-08T22:58:42.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:42 smithi040 bash[24841]: cephadm 2023-12-08T22:58:41.495249+0000 mgr.smithi040.evuiyl (mgr.14180) 585 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.fgrqyu on smithi149 2023-12-08T22:58:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:42 smithi149 bash[28710]: cluster 2023-12-08T22:58:41.492688+0000 mon.smithi040 (mon.0) 791 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:58:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:42 smithi149 bash[28710]: cluster 2023-12-08T22:58:41.492751+0000 mon.smithi040 (mon.0) 792 : cluster [INF] Cluster is now healthy 2023-12-08T22:58:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:42 smithi149 bash[28710]: cephadm 2023-12-08T22:58:41.495249+0000 mgr.smithi040.evuiyl (mgr.14180) 585 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.fgrqyu on smithi149 2023-12-08T22:58:42.969 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:43.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:43 smithi149 bash[28710]: cluster 2023-12-08T22:58:43.477295+0000 mgr.smithi040.evuiyl (mgr.14180) 586 : cluster [DBG] pgmap v425: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:44.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:43 smithi040 bash[24841]: cluster 2023-12-08T22:58:43.477295+0000 mgr.smithi040.evuiyl (mgr.14180) 586 : cluster [DBG] pgmap v425: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: cephadm 2023-12-08T22:58:45.464080+0000 mgr.smithi040.evuiyl (mgr.14180) 587 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: cephadm 2023-12-08T22:58:45.464689+0000 mgr.smithi040.evuiyl (mgr.14180) 588 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: audit 2023-12-08T22:58:45.465272+0000 mon.smithi040 (mon.0) 793 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.fgrqyu"}]: dispatch 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: cephadm 2023-12-08T22:58:45.466772+0000 mgr.smithi040.evuiyl (mgr.14180) 589 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: cephadm 2023-12-08T22:58:45.470031+0000 mgr.smithi040.evuiyl (mgr.14180) 590 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ceneoa on smithi040 2023-12-08T22:58:45.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:45 smithi040 bash[24841]: cluster 2023-12-08T22:58:45.477916+0000 mgr.smithi040.evuiyl (mgr.14180) 591 : cluster [DBG] pgmap v426: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: cephadm 2023-12-08T22:58:45.464080+0000 mgr.smithi040.evuiyl (mgr.14180) 587 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: cephadm 2023-12-08T22:58:45.464689+0000 mgr.smithi040.evuiyl (mgr.14180) 588 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: audit 2023-12-08T22:58:45.465272+0000 mon.smithi040 (mon.0) 793 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.fgrqyu"}]: dispatch 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: cephadm 2023-12-08T22:58:45.466772+0000 mgr.smithi040.evuiyl (mgr.14180) 589 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.fgrqyu ... 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:45.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:45.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:45.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:45.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: cephadm 2023-12-08T22:58:45.470031+0000 mgr.smithi040.evuiyl (mgr.14180) 590 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ceneoa on smithi040 2023-12-08T22:58:45.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:45 smithi149 bash[28710]: cluster 2023-12-08T22:58:45.477916+0000 mgr.smithi040.evuiyl (mgr.14180) 591 : cluster [DBG] pgmap v426: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:46.042 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:46.042 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:36.876276Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.eljctq on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-eljctq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.eljctq\nDeploy daemon haproxy.nfs.foo.smithi149.eljctq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.175871Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ejewrc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ejewrc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ejewrc\nDeploy daemon haproxy.nfs.foo.smithi040.ejewrc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:57:41.180109Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.oaptyy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:46.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:46 smithi040 bash[24841]: audit 2023-12-08T22:58:46.022828+0000 mgr.smithi040.evuiyl (mgr.14180) 592 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:46.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:46 smithi149 bash[28710]: audit 2023-12-08T22:58:46.022828+0000 mgr.smithi040.evuiyl (mgr.14180) 592 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:46.851 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:47.852 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:48.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:48 smithi040 bash[24841]: audit 2023-12-08T22:58:47.430260+0000 mon.smithi040 (mon.0) 794 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:48.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:48 smithi040 bash[24841]: cluster 2023-12-08T22:58:47.478478+0000 mgr.smithi040.evuiyl (mgr.14180) 593 : cluster [DBG] pgmap v427: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:48.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:48 smithi149 bash[28710]: audit 2023-12-08T22:58:47.430260+0000 mon.smithi040 (mon.0) 794 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:48.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:48 smithi149 bash[28710]: cluster 2023-12-08T22:58:47.478478+0000 mgr.smithi040.evuiyl (mgr.14180) 593 : cluster [DBG] pgmap v427: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T22:58:49.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:49 smithi040 bash[24841]: audit 2023-12-08T22:58:49.330767+0000 mon.smithi040 (mon.0) 795 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ceneoa"}]: dispatch 2023-12-08T22:58:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:49 smithi149 bash[28710]: audit 2023-12-08T22:58:49.330767+0000 mon.smithi040 (mon.0) 795 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ceneoa"}]: dispatch 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cephadm 2023-12-08T22:58:49.329624+0000 mgr.smithi040.evuiyl (mgr.14180) 594 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:58:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cephadm 2023-12-08T22:58:49.330251+0000 mgr.smithi040.evuiyl (mgr.14180) 595 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cephadm 2023-12-08T22:58:49.331923+0000 mgr.smithi040.evuiyl (mgr.14180) 596 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cephadm 2023-12-08T22:58:49.334313+0000 mgr.smithi040.evuiyl (mgr.14180) 597 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cephadm 2023-12-08T22:58:49.336064+0000 mgr.smithi040.evuiyl (mgr.14180) 598 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cluster 2023-12-08T22:58:49.337045+0000 mgr.smithi040.evuiyl (mgr.14180) 599 : cluster [DBG] pgmap v428: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: cluster 2023-12-08T22:58:49.435741+0000 mon.smithi040 (mon.0) 796 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:58:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:50 smithi040 bash[24841]: audit 2023-12-08T22:58:49.647584+0000 mon.smithi040 (mon.0) 797 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cephadm 2023-12-08T22:58:49.329624+0000 mgr.smithi040.evuiyl (mgr.14180) 594 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:58:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cephadm 2023-12-08T22:58:49.330251+0000 mgr.smithi040.evuiyl (mgr.14180) 595 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cephadm 2023-12-08T22:58:49.331923+0000 mgr.smithi040.evuiyl (mgr.14180) 596 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ceneoa ... 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cephadm 2023-12-08T22:58:49.334313+0000 mgr.smithi040.evuiyl (mgr.14180) 597 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:58:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cephadm 2023-12-08T22:58:49.336064+0000 mgr.smithi040.evuiyl (mgr.14180) 598 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:58:50.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cluster 2023-12-08T22:58:49.337045+0000 mgr.smithi040.evuiyl (mgr.14180) 599 : cluster [DBG] pgmap v428: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T22:58:50.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: cluster 2023-12-08T22:58:49.435741+0000 mon.smithi040 (mon.0) 796 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:58:50.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:50 smithi149 bash[28710]: audit 2023-12-08T22:58:49.647584+0000 mon.smithi040 (mon.0) 797 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:58:51.231 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:51.231 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:52.096 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:52.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:52 smithi040 bash[24841]: audit 2023-12-08T22:58:51.219468+0000 mgr.smithi040.evuiyl (mgr.14180) 600 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:52.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:52 smithi040 bash[24841]: cluster 2023-12-08T22:58:51.338278+0000 mgr.smithi040.evuiyl (mgr.14180) 601 : cluster [DBG] pgmap v429: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T22:58:52.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:52 smithi149 bash[28710]: audit 2023-12-08T22:58:51.219468+0000 mgr.smithi040.evuiyl (mgr.14180) 600 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:52.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:52 smithi149 bash[28710]: cluster 2023-12-08T22:58:51.338278+0000 mgr.smithi040.evuiyl (mgr.14180) 601 : cluster [DBG] pgmap v429: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T22:58:53.097 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:54.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:54 smithi040 bash[24841]: cluster 2023-12-08T22:58:53.339446+0000 mgr.smithi040.evuiyl (mgr.14180) 602 : cluster [DBG] pgmap v430: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:58:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:54 smithi149 bash[28710]: cluster 2023-12-08T22:58:53.339446+0000 mgr.smithi040.evuiyl (mgr.14180) 602 : cluster [DBG] pgmap v430: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:58:56.301 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:58:56.301 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:58:56.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:56 smithi040 bash[24841]: cluster 2023-12-08T22:58:55.340737+0000 mgr.smithi040.evuiyl (mgr.14180) 603 : cluster [DBG] pgmap v431: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:58:56.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:56 smithi149 bash[28710]: cluster 2023-12-08T22:58:55.340737+0000 mgr.smithi040.evuiyl (mgr.14180) 603 : cluster [DBG] pgmap v431: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:58:57.050 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:58:57.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:57 smithi040 bash[24841]: audit 2023-12-08T22:58:56.283773+0000 mgr.smithi040.evuiyl (mgr.14180) 604 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:57.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:57 smithi149 bash[28710]: audit 2023-12-08T22:58:56.283773+0000 mgr.smithi040.evuiyl (mgr.14180) 604 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:58:58.051 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:58:58.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:58:58 smithi040 bash[24841]: cluster 2023-12-08T22:58:57.341848+0000 mgr.smithi040.evuiyl (mgr.14180) 605 : cluster [DBG] pgmap v432: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:58:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:58:58 smithi149 bash[28710]: cluster 2023-12-08T22:58:57.341848+0000 mgr.smithi040.evuiyl (mgr.14180) 605 : cluster [DBG] pgmap v432: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:59:00.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:00 smithi040 bash[24841]: cluster 2023-12-08T22:58:59.342785+0000 mgr.smithi040.evuiyl (mgr.14180) 606 : cluster [DBG] pgmap v433: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:59:00.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:00 smithi149 bash[28710]: cluster 2023-12-08T22:58:59.342785+0000 mgr.smithi040.evuiyl (mgr.14180) 606 : cluster [DBG] pgmap v433: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T22:59:01.322 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:01.323 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:02.053 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:02.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:02 smithi040 bash[24841]: audit 2023-12-08T22:59:01.310166+0000 mgr.smithi040.evuiyl (mgr.14180) 607 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:02.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:02 smithi040 bash[24841]: cluster 2023-12-08T22:59:01.343784+0000 mgr.smithi040.evuiyl (mgr.14180) 608 : cluster [DBG] pgmap v434: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:02.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:02 smithi040 bash[24841]: audit 2023-12-08T22:59:02.430391+0000 mon.smithi040 (mon.0) 798 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:02 smithi149 bash[28710]: audit 2023-12-08T22:59:01.310166+0000 mgr.smithi040.evuiyl (mgr.14180) 607 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:02 smithi149 bash[28710]: cluster 2023-12-08T22:59:01.343784+0000 mgr.smithi040.evuiyl (mgr.14180) 608 : cluster [DBG] pgmap v434: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:02.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:02 smithi149 bash[28710]: audit 2023-12-08T22:59:02.430391+0000 mon.smithi040 (mon.0) 798 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:03.053 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:04 smithi040 bash[24841]: cluster 2023-12-08T22:59:03.344912+0000 mgr.smithi040.evuiyl (mgr.14180) 609 : cluster [DBG] pgmap v435: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:04.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:04 smithi149 bash[28710]: cluster 2023-12-08T22:59:03.344912+0000 mgr.smithi040.evuiyl (mgr.14180) 609 : cluster [DBG] pgmap v435: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:06.273 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:06.273 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:06.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:06 smithi040 bash[24841]: cluster 2023-12-08T22:59:05.346227+0000 mgr.smithi040.evuiyl (mgr.14180) 610 : cluster [DBG] pgmap v436: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:06 smithi149 bash[28710]: cluster 2023-12-08T22:59:05.346227+0000 mgr.smithi040.evuiyl (mgr.14180) 610 : cluster [DBG] pgmap v436: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:07.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:07.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:07 smithi040 bash[24841]: audit 2023-12-08T22:59:06.253185+0000 mgr.smithi040.evuiyl (mgr.14180) 611 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:07 smithi149 bash[28710]: audit 2023-12-08T22:59:06.253185+0000 mgr.smithi040.evuiyl (mgr.14180) 611 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:08.024 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:08.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:08 smithi040 bash[24841]: cluster 2023-12-08T22:59:07.347358+0000 mgr.smithi040.evuiyl (mgr.14180) 612 : cluster [DBG] pgmap v437: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:08.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:08 smithi149 bash[28710]: cluster 2023-12-08T22:59:07.347358+0000 mgr.smithi040.evuiyl (mgr.14180) 612 : cluster [DBG] pgmap v437: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:09.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:09 smithi149 bash[28710]: cluster 2023-12-08T22:59:09.348145+0000 mgr.smithi040.evuiyl (mgr.14180) 613 : cluster [DBG] pgmap v438: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:10.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:09 smithi040 bash[24841]: cluster 2023-12-08T22:59:09.348145+0000 mgr.smithi040.evuiyl (mgr.14180) 613 : cluster [DBG] pgmap v438: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:11.243 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:11.243 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:11.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:12.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:12 smithi040 bash[24841]: audit 2023-12-08T22:59:11.225855+0000 mgr.smithi040.evuiyl (mgr.14180) 614 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:12.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:12 smithi040 bash[24841]: cluster 2023-12-08T22:59:11.349383+0000 mgr.smithi040.evuiyl (mgr.14180) 615 : cluster [DBG] pgmap v439: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:12.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:12 smithi149 bash[28710]: audit 2023-12-08T22:59:11.225855+0000 mgr.smithi040.evuiyl (mgr.14180) 614 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:12.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:12 smithi149 bash[28710]: cluster 2023-12-08T22:59:11.349383+0000 mgr.smithi040.evuiyl (mgr.14180) 615 : cluster [DBG] pgmap v439: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:12.974 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:14.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:14 smithi040 bash[24841]: cluster 2023-12-08T22:59:13.350612+0000 mgr.smithi040.evuiyl (mgr.14180) 616 : cluster [DBG] pgmap v440: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:14.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:14 smithi149 bash[28710]: cluster 2023-12-08T22:59:13.350612+0000 mgr.smithi040.evuiyl (mgr.14180) 616 : cluster [DBG] pgmap v440: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:16.029 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:16.030 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:16.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:16 smithi040 bash[24841]: cluster 2023-12-08T22:59:15.351861+0000 mgr.smithi040.evuiyl (mgr.14180) 617 : cluster [DBG] pgmap v441: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:16.757 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:16 smithi149 bash[28710]: cluster 2023-12-08T22:59:15.351861+0000 mgr.smithi040.evuiyl (mgr.14180) 617 : cluster [DBG] pgmap v441: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:17.758 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:17 smithi040 bash[24841]: audit 2023-12-08T22:59:16.017013+0000 mgr.smithi040.evuiyl (mgr.14180) 618 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:17 smithi149 bash[28710]: audit 2023-12-08T22:59:16.017013+0000 mgr.smithi040.evuiyl (mgr.14180) 618 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:18.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:18 smithi040 bash[24841]: cluster 2023-12-08T22:59:17.353001+0000 mgr.smithi040.evuiyl (mgr.14180) 619 : cluster [DBG] pgmap v442: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:18.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:18 smithi149 bash[28710]: cluster 2023-12-08T22:59:17.353001+0000 mgr.smithi040.evuiyl (mgr.14180) 619 : cluster [DBG] pgmap v442: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:20.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:20 smithi040 bash[24841]: cluster 2023-12-08T22:59:19.354259+0000 mgr.smithi040.evuiyl (mgr.14180) 620 : cluster [DBG] pgmap v443: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:20 smithi149 bash[28710]: cluster 2023-12-08T22:59:19.354259+0000 mgr.smithi040.evuiyl (mgr.14180) 620 : cluster [DBG] pgmap v443: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:20.875 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:20.875 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:21.574 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:22.575 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:22.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:22 smithi040 bash[24841]: audit 2023-12-08T22:59:20.863081+0000 mgr.smithi040.evuiyl (mgr.14180) 621 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:22.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:22 smithi040 bash[24841]: cluster 2023-12-08T22:59:21.355426+0000 mgr.smithi040.evuiyl (mgr.14180) 622 : cluster [DBG] pgmap v444: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:22.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:22 smithi149 bash[28710]: audit 2023-12-08T22:59:20.863081+0000 mgr.smithi040.evuiyl (mgr.14180) 621 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:22.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:22 smithi149 bash[28710]: cluster 2023-12-08T22:59:21.355426+0000 mgr.smithi040.evuiyl (mgr.14180) 622 : cluster [DBG] pgmap v444: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:24.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:24 smithi040 bash[24841]: cluster 2023-12-08T22:59:23.356580+0000 mgr.smithi040.evuiyl (mgr.14180) 623 : cluster [DBG] pgmap v445: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:24 smithi149 bash[28710]: cluster 2023-12-08T22:59:23.356580+0000 mgr.smithi040.evuiyl (mgr.14180) 623 : cluster [DBG] pgmap v445: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:25.763 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:25.763 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:26.438 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:26.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:26 smithi040 bash[24841]: cluster 2023-12-08T22:59:25.357480+0000 mgr.smithi040.evuiyl (mgr.14180) 624 : cluster [DBG] pgmap v446: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:26.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:26 smithi149 bash[28710]: cluster 2023-12-08T22:59:25.357480+0000 mgr.smithi040.evuiyl (mgr.14180) 624 : cluster [DBG] pgmap v446: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:27.438 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:27.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:27 smithi040 bash[24841]: audit 2023-12-08T22:59:25.750643+0000 mgr.smithi040.evuiyl (mgr.14180) 625 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:27.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:27 smithi149 bash[28710]: audit 2023-12-08T22:59:25.750643+0000 mgr.smithi040.evuiyl (mgr.14180) 625 : audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:28.723 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:28 smithi040 bash[24841]: cluster 2023-12-08T22:59:27.358611+0000 mgr.smithi040.evuiyl (mgr.14180) 626 : cluster [DBG] pgmap v447: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:28 smithi149 bash[28710]: cluster 2023-12-08T22:59:27.358611+0000 mgr.smithi040.evuiyl (mgr.14180) 626 : cluster [DBG] pgmap v447: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:30.611 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:30.611 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:30 smithi040 bash[24841]: cluster 2023-12-08T22:59:29.359882+0000 mgr.smithi040.evuiyl (mgr.14180) 627 : cluster [DBG] pgmap v448: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:30.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:30 smithi149 bash[28710]: cluster 2023-12-08T22:59:29.359882+0000 mgr.smithi040.evuiyl (mgr.14180) 627 : cluster [DBG] pgmap v448: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:31.352 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:32.353 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:32.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:32 smithi040 bash[24841]: audit 2023-12-08T22:59:30.592890+0000 mgr.smithi040.evuiyl (mgr.14180) 628 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:32 smithi040 bash[24841]: cluster 2023-12-08T22:59:31.361161+0000 mgr.smithi040.evuiyl (mgr.14180) 629 : cluster [DBG] pgmap v449: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:32 smithi149 bash[28710]: audit 2023-12-08T22:59:30.592890+0000 mgr.smithi040.evuiyl (mgr.14180) 628 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:32 smithi149 bash[28710]: cluster 2023-12-08T22:59:31.361161+0000 mgr.smithi040.evuiyl (mgr.14180) 629 : cluster [DBG] pgmap v449: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:34.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:34 smithi040 bash[24841]: cluster 2023-12-08T22:59:33.361886+0000 mgr.smithi040.evuiyl (mgr.14180) 630 : cluster [DBG] pgmap v450: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:34.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:34 smithi149 bash[28710]: cluster 2023-12-08T22:59:33.361886+0000 mgr.smithi040.evuiyl (mgr.14180) 630 : cluster [DBG] pgmap v450: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:35.540 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:35.540 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:36.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:36.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:36 smithi040 bash[24841]: cluster 2023-12-08T22:59:35.363190+0000 mgr.smithi040.evuiyl (mgr.14180) 631 : cluster [DBG] pgmap v451: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:36 smithi149 bash[28710]: cluster 2023-12-08T22:59:35.363190+0000 mgr.smithi040.evuiyl (mgr.14180) 631 : cluster [DBG] pgmap v451: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:37.345 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:37.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:37 smithi040 bash[24841]: audit 2023-12-08T22:59:35.523866+0000 mgr.smithi040.evuiyl (mgr.14180) 632 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:37.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:37 smithi149 bash[28710]: audit 2023-12-08T22:59:35.523866+0000 mgr.smithi040.evuiyl (mgr.14180) 632 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:38.733 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:38 smithi040 bash[24841]: cluster 2023-12-08T22:59:37.364043+0000 mgr.smithi040.evuiyl (mgr.14180) 633 : cluster [DBG] pgmap v452: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:38.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:38 smithi149 bash[28710]: cluster 2023-12-08T22:59:37.364043+0000 mgr.smithi040.evuiyl (mgr.14180) 633 : cluster [DBG] pgmap v452: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:40.427 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:40.428 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:40.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:40 smithi040 bash[24841]: cluster 2023-12-08T22:59:39.365269+0000 mgr.smithi040.evuiyl (mgr.14180) 634 : cluster [DBG] pgmap v453: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:40.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:40 smithi149 bash[28710]: cluster 2023-12-08T22:59:39.365269+0000 mgr.smithi040.evuiyl (mgr.14180) 634 : cluster [DBG] pgmap v453: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:41.163 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:41.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:41 smithi040 bash[24841]: audit 2023-12-08T22:59:40.414393+0000 mgr.smithi040.evuiyl (mgr.14180) 635 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:41 smithi149 bash[28710]: audit 2023-12-08T22:59:40.414393+0000 mgr.smithi040.evuiyl (mgr.14180) 635 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:42.164 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:42.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:42 smithi040 bash[24841]: cluster 2023-12-08T22:59:41.366429+0000 mgr.smithi040.evuiyl (mgr.14180) 636 : cluster [DBG] pgmap v454: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:42.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:42 smithi149 bash[28710]: cluster 2023-12-08T22:59:41.366429+0000 mgr.smithi040.evuiyl (mgr.14180) 636 : cluster [DBG] pgmap v454: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:43.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:43 smithi149 bash[28710]: cluster 2023-12-08T22:59:43.367645+0000 mgr.smithi040.evuiyl (mgr.14180) 637 : cluster [DBG] pgmap v455: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:44.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:43 smithi040 bash[24841]: cluster 2023-12-08T22:59:43.367645+0000 mgr.smithi040.evuiyl (mgr.14180) 637 : cluster [DBG] pgmap v455: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:45.307 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:45.307 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:46.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:46 smithi040 bash[24841]: audit 2023-12-08T22:59:45.290864+0000 mgr.smithi040.evuiyl (mgr.14180) 638 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:46 smithi040 bash[24841]: cluster 2023-12-08T22:59:45.368862+0000 mgr.smithi040.evuiyl (mgr.14180) 639 : cluster [DBG] pgmap v456: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:46.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:46 smithi149 bash[28710]: audit 2023-12-08T22:59:45.290864+0000 mgr.smithi040.evuiyl (mgr.14180) 638 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:46.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:46 smithi149 bash[28710]: cluster 2023-12-08T22:59:45.368862+0000 mgr.smithi040.evuiyl (mgr.14180) 639 : cluster [DBG] pgmap v456: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:47.029 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:48.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:48 smithi040 bash[24841]: cluster 2023-12-08T22:59:47.369938+0000 mgr.smithi040.evuiyl (mgr.14180) 640 : cluster [DBG] pgmap v457: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:48.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:48 smithi149 bash[28710]: cluster 2023-12-08T22:59:47.369938+0000 mgr.smithi040.evuiyl (mgr.14180) 640 : cluster [DBG] pgmap v457: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T22:59:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:49 smithi040 bash[24841]: audit 2023-12-08T22:59:49.340317+0000 mon.smithi040 (mon.0) 799 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:59:49.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:49 smithi149 bash[28710]: audit 2023-12-08T22:59:49.340317+0000 mon.smithi040 (mon.0) 799 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T22:59:50.210 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:50.211 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:57:41.183468Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ubddbh on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: cluster 2023-12-08T22:59:49.370986+0000 mgr.smithi040.evuiyl (mgr.14180) 641 : cluster [DBG] pgmap v458: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:50.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.641579+0000 mon.smithi040 (mon.0) 800 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.650867+0000 mon.smithi040 (mon.0) 801 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]': finished 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.651625+0000 mon.smithi040 (mon.0) 802 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.652594+0000 mon.smithi040 (mon.0) 803 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.653463+0000 mon.smithi040 (mon.0) 804 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.654354+0000 mon.smithi040 (mon.0) 805 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.659253+0000 mon.smithi040 (mon.0) 806 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.660801+0000 mon.smithi040 (mon.0) 807 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.661808+0000 mon.smithi040 (mon.0) 808 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.667290+0000 mon.smithi040 (mon.0) 809 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.672483+0000 mon.smithi040 (mon.0) 810 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:59:50.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:50 smithi040 bash[24841]: audit 2023-12-08T22:59:49.684303+0000 mon.smithi040 (mon.0) 811 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: cluster 2023-12-08T22:59:49.370986+0000 mgr.smithi040.evuiyl (mgr.14180) 641 : cluster [DBG] pgmap v458: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.641579+0000 mon.smithi040 (mon.0) 800 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.650867+0000 mon.smithi040 (mon.0) 801 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd='[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]': finished 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.651625+0000 mon.smithi040 (mon.0) 802 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.652594+0000 mon.smithi040 (mon.0) 803 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.653463+0000 mon.smithi040 (mon.0) 804 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.654354+0000 mon.smithi040 (mon.0) 805 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-12-08T22:59:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.659253+0000 mon.smithi040 (mon.0) 806 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.660801+0000 mon.smithi040 (mon.0) 807 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T22:59:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.661808+0000 mon.smithi040 (mon.0) 808 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T22:59:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.667290+0000 mon.smithi040 (mon.0) 809 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.672483+0000 mon.smithi040 (mon.0) 810 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T22:59:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:50 smithi149 bash[28710]: audit 2023-12-08T22:59:49.684303+0000 mon.smithi040 (mon.0) 811 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T22:59:50.932 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: cephadm 2023-12-08T22:59:49.655109+0000 mgr.smithi040.evuiyl (mgr.14180) 642 : cephadm [INF] Adjusting osd_memory_target on smithi040 to 1981M 2023-12-08T22:59:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: cluster 2023-12-08T22:59:49.667937+0000 mgr.smithi040.evuiyl (mgr.14180) 643 : cluster [DBG] pgmap v459: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: cephadm 2023-12-08T22:59:49.691552+0000 mgr.smithi040.evuiyl (mgr.14180) 644 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.zugyza on smithi149 2023-12-08T22:59:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: audit 2023-12-08T22:59:50.197885+0000 mgr.smithi040.evuiyl (mgr.14180) 645 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: cluster 2023-12-08T22:59:50.350050+0000 mon.smithi040 (mon.0) 812 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:59:51.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:51 smithi149 bash[28710]: cluster 2023-12-08T22:59:50.350106+0000 mon.smithi040 (mon.0) 813 : cluster [INF] Cluster is now healthy 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: cephadm 2023-12-08T22:59:49.655109+0000 mgr.smithi040.evuiyl (mgr.14180) 642 : cephadm [INF] Adjusting osd_memory_target on smithi040 to 1981M 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: cluster 2023-12-08T22:59:49.667937+0000 mgr.smithi040.evuiyl (mgr.14180) 643 : cluster [DBG] pgmap v459: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: cephadm 2023-12-08T22:59:49.691552+0000 mgr.smithi040.evuiyl (mgr.14180) 644 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.zugyza on smithi149 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: audit 2023-12-08T22:59:50.197885+0000 mgr.smithi040.evuiyl (mgr.14180) 645 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: cluster 2023-12-08T22:59:50.350050+0000 mon.smithi040 (mon.0) 812 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T22:59:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:51 smithi040 bash[24841]: cluster 2023-12-08T22:59:50.350106+0000 mon.smithi040 (mon.0) 813 : cluster [INF] Cluster is now healthy 2023-12-08T22:59:51.933 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:53.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:53 smithi040 bash[24841]: cluster 2023-12-08T22:59:51.668832+0000 mgr.smithi040.evuiyl (mgr.14180) 646 : cluster [DBG] pgmap v460: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:53.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:53 smithi149 bash[28710]: cluster 2023-12-08T22:59:51.668832+0000 mgr.smithi040.evuiyl (mgr.14180) 646 : cluster [DBG] pgmap v460: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:54.751 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:54 smithi040 bash[24841]: audit 2023-12-08T22:59:53.547599+0000 mon.smithi040 (mon.0) 814 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.zugyza"}]: dispatch 2023-12-08T22:59:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:54 smithi149 bash[28710]: audit 2023-12-08T22:59:53.547599+0000 mon.smithi040 (mon.0) 814 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.zugyza"}]: dispatch 2023-12-08T22:59:55.131 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T22:59:55.132 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:45.466564Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.fgrqyu on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-fgrqyu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.fgrqyu\nDeploy daemon haproxy.nfs.foo.smithi149.fgrqyu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.331776Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ceneoa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ceneoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ceneoa\nDeploy daemon haproxy.nfs.foo.smithi040.ceneoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:58:49.334185Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hqhlcw on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T22:59:55.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: cephadm 2023-12-08T22:59:53.546330+0000 mgr.smithi040.evuiyl (mgr.14180) 647 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:59:55.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: cephadm 2023-12-08T22:59:53.546854+0000 mgr.smithi040.evuiyl (mgr.14180) 648 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: cephadm 2023-12-08T22:59:53.549355+0000 mgr.smithi040.evuiyl (mgr.14180) 649 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: cephadm 2023-12-08T22:59:53.554251+0000 mgr.smithi040.evuiyl (mgr.14180) 650 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.zlrddv on smithi040 2023-12-08T22:59:55.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:55 smithi040 bash[24841]: cluster 2023-12-08T22:59:53.669612+0000 mgr.smithi040.evuiyl (mgr.14180) 651 : cluster [DBG] pgmap v461: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:55.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: cephadm 2023-12-08T22:59:53.546330+0000 mgr.smithi040.evuiyl (mgr.14180) 647 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:59:55.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: cephadm 2023-12-08T22:59:53.546854+0000 mgr.smithi040.evuiyl (mgr.14180) 648 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: cephadm 2023-12-08T22:59:53.549355+0000 mgr.smithi040.evuiyl (mgr.14180) 649 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T22:59:55.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: cephadm 2023-12-08T22:59:53.554251+0000 mgr.smithi040.evuiyl (mgr.14180) 650 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.zlrddv on smithi040 2023-12-08T22:59:55.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:55 smithi149 bash[28710]: cluster 2023-12-08T22:59:53.669612+0000 mgr.smithi040.evuiyl (mgr.14180) 651 : cluster [DBG] pgmap v461: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:55.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T22:59:56.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:56 smithi040 bash[24841]: audit 2023-12-08T22:59:55.113594+0000 mgr.smithi040.evuiyl (mgr.14180) 652 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:56.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:56 smithi149 bash[28710]: audit 2023-12-08T22:59:55.113594+0000 mgr.smithi040.evuiyl (mgr.14180) 652 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T22:59:56.977 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T22:59:57.672 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:57 smithi040 bash[24841]: cluster 2023-12-08T22:59:55.670558+0000 mgr.smithi040.evuiyl (mgr.14180) 653 : cluster [DBG] pgmap v462: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:57 smithi149 bash[28710]: cluster 2023-12-08T22:59:55.670558+0000 mgr.smithi040.evuiyl (mgr.14180) 653 : cluster [DBG] pgmap v462: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:58.663 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:58 smithi040 bash[24841]: audit 2023-12-08T22:59:57.699715+0000 mon.smithi040 (mon.0) 815 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.zlrddv"}]: dispatch 2023-12-08T22:59:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:58 smithi149 bash[28710]: audit 2023-12-08T22:59:57.699715+0000 mon.smithi040 (mon.0) 815 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.zlrddv"}]: dispatch 2023-12-08T22:59:59.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cluster 2023-12-08T22:59:57.671106+0000 mgr.smithi040.evuiyl (mgr.14180) 654 : cluster [DBG] pgmap v463: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:59.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cephadm 2023-12-08T22:59:57.698799+0000 mgr.smithi040.evuiyl (mgr.14180) 655 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T22:59:59.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.516 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cephadm 2023-12-08T22:59:57.699097+0000 mgr.smithi040.evuiyl (mgr.14180) 656 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cephadm 2023-12-08T22:59:57.701130+0000 mgr.smithi040.evuiyl (mgr.14180) 657 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.517 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cephadm 2023-12-08T22:59:57.703197+0000 mgr.smithi040.evuiyl (mgr.14180) 658 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:59:59.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cephadm 2023-12-08T22:59:57.704958+0000 mgr.smithi040.evuiyl (mgr.14180) 659 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:59:59.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cluster 2023-12-08T22:59:57.706002+0000 mgr.smithi040.evuiyl (mgr.14180) 660 : cluster [DBG] pgmap v464: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:59:59.518 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 22:59:59 smithi040 bash[24841]: cluster 2023-12-08T22:59:58.392537+0000 mon.smithi040 (mon.0) 816 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cluster 2023-12-08T22:59:57.671106+0000 mgr.smithi040.evuiyl (mgr.14180) 654 : cluster [DBG] pgmap v463: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cephadm 2023-12-08T22:59:57.698799+0000 mgr.smithi040.evuiyl (mgr.14180) 655 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cephadm 2023-12-08T22:59:57.699097+0000 mgr.smithi040.evuiyl (mgr.14180) 656 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cephadm 2023-12-08T22:59:57.701130+0000 mgr.smithi040.evuiyl (mgr.14180) 657 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cephadm 2023-12-08T22:59:57.703197+0000 mgr.smithi040.evuiyl (mgr.14180) 658 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cephadm 2023-12-08T22:59:57.704958+0000 mgr.smithi040.evuiyl (mgr.14180) 659 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cluster 2023-12-08T22:59:57.706002+0000 mgr.smithi040.evuiyl (mgr.14180) 660 : cluster [DBG] pgmap v464: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T22:59:59.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 22:59:59 smithi149 bash[28710]: cluster 2023-12-08T22:59:58.392537+0000 mon.smithi040 (mon.0) 816 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:00:00.394 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:00.394 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:01.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: audit 2023-12-08T22:59:59.698008+0000 mon.smithi040 (mon.0) 817 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:01.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T22:59:59.707003+0000 mgr.smithi040.evuiyl (mgr.14180) 661 : cluster [DBG] pgmap v465: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000164+0000 mon.smithi040 (mon.0) 818 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000247+0000 mon.smithi040 (mon.0) 819 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000305+0000 mon.smithi040 (mon.0) 820 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000358+0000 mon.smithi040 (mon.0) 821 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000400+0000 mon.smithi040 (mon.0) 822 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000446+0000 mon.smithi040 (mon.0) 823 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000494+0000 mon.smithi040 (mon.0) 824 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000544+0000 mon.smithi040 (mon.0) 825 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000587+0000 mon.smithi040 (mon.0) 826 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000612+0000 mon.smithi040 (mon.0) 827 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000672+0000 mon.smithi040 (mon.0) 828 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000694+0000 mon.smithi040 (mon.0) 829 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000740+0000 mon.smithi040 (mon.0) 830 : cluster [WRN] stat: stderr See 'docker run --help'. 2023-12-08T23:00:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000780+0000 mon.smithi040 (mon.0) 831 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000833+0000 mon.smithi040 (mon.0) 832 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000885+0000 mon.smithi040 (mon.0) 833 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000921+0000 mon.smithi040 (mon.0) 834 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.000966+0000 mon.smithi040 (mon.0) 835 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001000+0000 mon.smithi040 (mon.0) 836 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001042+0000 mon.smithi040 (mon.0) 837 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001081+0000 mon.smithi040 (mon.0) 838 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001104+0000 mon.smithi040 (mon.0) 839 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001138+0000 mon.smithi040 (mon.0) 840 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001174+0000 mon.smithi040 (mon.0) 841 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001214+0000 mon.smithi040 (mon.0) 842 : cluster [WRN] stat: stderr See 'docker run --help'. 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001255+0000 mon.smithi040 (mon.0) 843 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001293+0000 mon.smithi040 (mon.0) 844 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: cluster 2023-12-08T23:00:00.001327+0000 mon.smithi040 (mon.0) 845 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:00:01.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:00 smithi040 bash[24841]: audit 2023-12-08T23:00:00.377026+0000 mgr.smithi040.evuiyl (mgr.14180) 662 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:01.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: audit 2023-12-08T22:59:59.698008+0000 mon.smithi040 (mon.0) 817 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:01.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T22:59:59.707003+0000 mgr.smithi040.evuiyl (mgr.14180) 661 : cluster [DBG] pgmap v465: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:00:01.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000164+0000 mon.smithi040 (mon.0) 818 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2023-12-08T23:00:01.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000247+0000 mon.smithi040 (mon.0) 819 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2023-12-08T23:00:01.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000305+0000 mon.smithi040 (mon.0) 820 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000358+0000 mon.smithi040 (mon.0) 821 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000400+0000 mon.smithi040 (mon.0) 822 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000446+0000 mon.smithi040 (mon.0) 823 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000494+0000 mon.smithi040 (mon.0) 824 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000544+0000 mon.smithi040 (mon.0) 825 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000587+0000 mon.smithi040 (mon.0) 826 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi149.zugyza ... 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000612+0000 mon.smithi040 (mon.0) 827 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000672+0000 mon.smithi040 (mon.0) 828 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000694+0000 mon.smithi040 (mon.0) 829 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000740+0000 mon.smithi040 (mon.0) 830 : cluster [WRN] stat: stderr See 'docker run --help'. 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000780+0000 mon.smithi040 (mon.0) 831 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000833+0000 mon.smithi040 (mon.0) 832 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T23:00:01.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000885+0000 mon.smithi040 (mon.0) 833 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000921+0000 mon.smithi040 (mon.0) 834 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.000966+0000 mon.smithi040 (mon.0) 835 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001000+0000 mon.smithi040 (mon.0) 836 : cluster [WRN] /usr/bin/docker: stdout 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001042+0000 mon.smithi040 (mon.0) 837 : cluster [WRN] /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001081+0000 mon.smithi040 (mon.0) 838 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi040.zlrddv ... 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001104+0000 mon.smithi040 (mon.0) 839 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001138+0000 mon.smithi040 (mon.0) 840 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001174+0000 mon.smithi040 (mon.0) 841 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001214+0000 mon.smithi040 (mon.0) 842 : cluster [WRN] stat: stderr See 'docker run --help'. 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001255+0000 mon.smithi040 (mon.0) 843 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001293+0000 mon.smithi040 (mon.0) 844 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: cluster 2023-12-08T23:00:00.001327+0000 mon.smithi040 (mon.0) 845 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:00:01.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:00 smithi149 bash[28710]: audit 2023-12-08T23:00:00.377026+0000 mgr.smithi040.evuiyl (mgr.14180) 662 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:01.167 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:02.168 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:03.712 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:03 smithi040 bash[24841]: cluster 2023-12-08T23:00:01.708202+0000 mgr.smithi040.evuiyl (mgr.14180) 663 : cluster [DBG] pgmap v466: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:00:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:03 smithi149 bash[28710]: cluster 2023-12-08T23:00:01.708202+0000 mgr.smithi040.evuiyl (mgr.14180) 663 : cluster [DBG] pgmap v466: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:00:05.279 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:05.279 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:05.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:05 smithi040 bash[24841]: cluster 2023-12-08T23:00:03.709297+0000 mgr.smithi040.evuiyl (mgr.14180) 664 : cluster [DBG] pgmap v467: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:05 smithi149 bash[28710]: cluster 2023-12-08T23:00:03.709297+0000 mgr.smithi040.evuiyl (mgr.14180) 664 : cluster [DBG] pgmap v467: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:06.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:06.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:06 smithi040 bash[24841]: audit 2023-12-08T23:00:05.261982+0000 mgr.smithi040.evuiyl (mgr.14180) 665 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:06 smithi149 bash[28710]: audit 2023-12-08T23:00:05.261982+0000 mgr.smithi040.evuiyl (mgr.14180) 665 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:07.028 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:07.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:07 smithi040 bash[24841]: cluster 2023-12-08T23:00:05.709940+0000 mgr.smithi040.evuiyl (mgr.14180) 666 : cluster [DBG] pgmap v468: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:07 smithi149 bash[28710]: cluster 2023-12-08T23:00:05.709940+0000 mgr.smithi040.evuiyl (mgr.14180) 666 : cluster [DBG] pgmap v468: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:09.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:09 smithi040 bash[24841]: cluster 2023-12-08T23:00:07.711028+0000 mgr.smithi040.evuiyl (mgr.14180) 667 : cluster [DBG] pgmap v469: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:09 smithi149 bash[28710]: cluster 2023-12-08T23:00:07.711028+0000 mgr.smithi040.evuiyl (mgr.14180) 667 : cluster [DBG] pgmap v469: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:00:10.358 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:10.359 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:11.134 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:11.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:11 smithi149 bash[28710]: cluster 2023-12-08T23:00:09.712219+0000 mgr.smithi040.evuiyl (mgr.14180) 668 : cluster [DBG] pgmap v470: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:11.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:11 smithi149 bash[28710]: audit 2023-12-08T23:00:10.339457+0000 mgr.smithi040.evuiyl (mgr.14180) 669 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:11 smithi040 bash[24841]: cluster 2023-12-08T23:00:09.712219+0000 mgr.smithi040.evuiyl (mgr.14180) 668 : cluster [DBG] pgmap v470: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:11 smithi040 bash[24841]: audit 2023-12-08T23:00:10.339457+0000 mgr.smithi040.evuiyl (mgr.14180) 669 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:12.135 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:13.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:13 smithi040 bash[24841]: cluster 2023-12-08T23:00:11.713473+0000 mgr.smithi040.evuiyl (mgr.14180) 670 : cluster [DBG] pgmap v471: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:13 smithi149 bash[28710]: cluster 2023-12-08T23:00:11.713473+0000 mgr.smithi040.evuiyl (mgr.14180) 670 : cluster [DBG] pgmap v471: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:15.302 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:15.303 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:15 smithi040 bash[24841]: cluster 2023-12-08T23:00:13.714230+0000 mgr.smithi040.evuiyl (mgr.14180) 671 : cluster [DBG] pgmap v472: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:15 smithi149 bash[28710]: cluster 2023-12-08T23:00:13.714230+0000 mgr.smithi040.evuiyl (mgr.14180) 671 : cluster [DBG] pgmap v472: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:16.067 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:16 smithi040 bash[24841]: audit 2023-12-08T23:00:15.285017+0000 mgr.smithi040.evuiyl (mgr.14180) 672 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:16 smithi149 bash[28710]: audit 2023-12-08T23:00:15.285017+0000 mgr.smithi040.evuiyl (mgr.14180) 672 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:17.068 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:17 smithi040 bash[24841]: cluster 2023-12-08T23:00:15.714918+0000 mgr.smithi040.evuiyl (mgr.14180) 673 : cluster [DBG] pgmap v473: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:17 smithi149 bash[28710]: cluster 2023-12-08T23:00:15.714918+0000 mgr.smithi040.evuiyl (mgr.14180) 673 : cluster [DBG] pgmap v473: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:19.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:19 smithi040 bash[24841]: cluster 2023-12-08T23:00:17.716043+0000 mgr.smithi040.evuiyl (mgr.14180) 674 : cluster [DBG] pgmap v474: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:19 smithi149 bash[28710]: cluster 2023-12-08T23:00:17.716043+0000 mgr.smithi040.evuiyl (mgr.14180) 674 : cluster [DBG] pgmap v474: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:20.189 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:20.190 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:20.933 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:21 smithi149 bash[28710]: cluster 2023-12-08T23:00:19.716726+0000 mgr.smithi040.evuiyl (mgr.14180) 675 : cluster [DBG] pgmap v475: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:21 smithi149 bash[28710]: audit 2023-12-08T23:00:20.171302+0000 mgr.smithi040.evuiyl (mgr.14180) 676 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:21.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:21 smithi040 bash[24841]: cluster 2023-12-08T23:00:19.716726+0000 mgr.smithi040.evuiyl (mgr.14180) 675 : cluster [DBG] pgmap v475: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:21.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:21 smithi040 bash[24841]: audit 2023-12-08T23:00:20.171302+0000 mgr.smithi040.evuiyl (mgr.14180) 676 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:21.934 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:23 smithi040 bash[24841]: cluster 2023-12-08T23:00:21.717957+0000 mgr.smithi040.evuiyl (mgr.14180) 677 : cluster [DBG] pgmap v476: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:23.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:23 smithi149 bash[28710]: cluster 2023-12-08T23:00:21.717957+0000 mgr.smithi040.evuiyl (mgr.14180) 677 : cluster [DBG] pgmap v476: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:25.164 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:25.164 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:25.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:25 smithi040 bash[24841]: cluster 2023-12-08T23:00:23.719114+0000 mgr.smithi040.evuiyl (mgr.14180) 678 : cluster [DBG] pgmap v477: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:25 smithi149 bash[28710]: cluster 2023-12-08T23:00:23.719114+0000 mgr.smithi040.evuiyl (mgr.14180) 678 : cluster [DBG] pgmap v477: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:25.919 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:26.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:26 smithi040 bash[24841]: audit 2023-12-08T23:00:25.146367+0000 mgr.smithi040.evuiyl (mgr.14180) 679 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:26 smithi149 bash[28710]: audit 2023-12-08T23:00:25.146367+0000 mgr.smithi040.evuiyl (mgr.14180) 679 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:26.920 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:27.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:27 smithi040 bash[24841]: cluster 2023-12-08T23:00:25.720227+0000 mgr.smithi040.evuiyl (mgr.14180) 680 : cluster [DBG] pgmap v478: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:27 smithi149 bash[28710]: cluster 2023-12-08T23:00:25.720227+0000 mgr.smithi040.evuiyl (mgr.14180) 680 : cluster [DBG] pgmap v478: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:29.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:29 smithi040 bash[24841]: cluster 2023-12-08T23:00:27.721021+0000 mgr.smithi040.evuiyl (mgr.14180) 681 : cluster [DBG] pgmap v479: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:29 smithi149 bash[28710]: cluster 2023-12-08T23:00:27.721021+0000 mgr.smithi040.evuiyl (mgr.14180) 681 : cluster [DBG] pgmap v479: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:30.248 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:30.248 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:31.015 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:31.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:31 smithi149 bash[28710]: cluster 2023-12-08T23:00:29.722182+0000 mgr.smithi040.evuiyl (mgr.14180) 682 : cluster [DBG] pgmap v480: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:31.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:31 smithi149 bash[28710]: audit 2023-12-08T23:00:30.230925+0000 mgr.smithi040.evuiyl (mgr.14180) 683 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:31.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:31 smithi040 bash[24841]: cluster 2023-12-08T23:00:29.722182+0000 mgr.smithi040.evuiyl (mgr.14180) 682 : cluster [DBG] pgmap v480: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:31.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:31 smithi040 bash[24841]: audit 2023-12-08T23:00:30.230925+0000 mgr.smithi040.evuiyl (mgr.14180) 683 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:32.016 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:33.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:33 smithi040 bash[24841]: cluster 2023-12-08T23:00:31.723605+0000 mgr.smithi040.evuiyl (mgr.14180) 684 : cluster [DBG] pgmap v481: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:33 smithi149 bash[28710]: cluster 2023-12-08T23:00:31.723605+0000 mgr.smithi040.evuiyl (mgr.14180) 684 : cluster [DBG] pgmap v481: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:35.207 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:35.207 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:35.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:35 smithi040 bash[24841]: cluster 2023-12-08T23:00:33.724487+0000 mgr.smithi040.evuiyl (mgr.14180) 685 : cluster [DBG] pgmap v482: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:35 smithi149 bash[28710]: cluster 2023-12-08T23:00:33.724487+0000 mgr.smithi040.evuiyl (mgr.14180) 685 : cluster [DBG] pgmap v482: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:35.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:36 smithi040 bash[24841]: audit 2023-12-08T23:00:35.187557+0000 mgr.smithi040.evuiyl (mgr.14180) 686 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:36 smithi149 bash[28710]: audit 2023-12-08T23:00:35.187557+0000 mgr.smithi040.evuiyl (mgr.14180) 686 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:36.977 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:37.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:37 smithi040 bash[24841]: cluster 2023-12-08T23:00:35.725629+0000 mgr.smithi040.evuiyl (mgr.14180) 687 : cluster [DBG] pgmap v483: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:37 smithi149 bash[28710]: cluster 2023-12-08T23:00:35.725629+0000 mgr.smithi040.evuiyl (mgr.14180) 687 : cluster [DBG] pgmap v483: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:39.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:39 smithi040 bash[24841]: cluster 2023-12-08T23:00:37.726774+0000 mgr.smithi040.evuiyl (mgr.14180) 688 : cluster [DBG] pgmap v484: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:39 smithi149 bash[28710]: cluster 2023-12-08T23:00:37.726774+0000 mgr.smithi040.evuiyl (mgr.14180) 688 : cluster [DBG] pgmap v484: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:40.051 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:40.051 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:40.840 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:41.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:41 smithi040 bash[24841]: cluster 2023-12-08T23:00:39.727605+0000 mgr.smithi040.evuiyl (mgr.14180) 689 : cluster [DBG] pgmap v485: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:41.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:41 smithi040 bash[24841]: audit 2023-12-08T23:00:40.033109+0000 mgr.smithi040.evuiyl (mgr.14180) 690 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:41.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:41 smithi149 bash[28710]: cluster 2023-12-08T23:00:39.727605+0000 mgr.smithi040.evuiyl (mgr.14180) 689 : cluster [DBG] pgmap v485: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:41.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:41 smithi149 bash[28710]: audit 2023-12-08T23:00:40.033109+0000 mgr.smithi040.evuiyl (mgr.14180) 690 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:41.841 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:43.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:43 smithi040 bash[24841]: cluster 2023-12-08T23:00:41.728812+0000 mgr.smithi040.evuiyl (mgr.14180) 691 : cluster [DBG] pgmap v486: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:43 smithi149 bash[28710]: cluster 2023-12-08T23:00:41.728812+0000 mgr.smithi040.evuiyl (mgr.14180) 691 : cluster [DBG] pgmap v486: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:44.957 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:44.957 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:45.677 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:45 smithi040 bash[24841]: cluster 2023-12-08T23:00:43.730355+0000 mgr.smithi040.evuiyl (mgr.14180) 692 : cluster [DBG] pgmap v487: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:45.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:45 smithi149 bash[28710]: cluster 2023-12-08T23:00:43.730355+0000 mgr.smithi040.evuiyl (mgr.14180) 692 : cluster [DBG] pgmap v487: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:46.678 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:46 smithi149 bash[28710]: audit 2023-12-08T23:00:44.938802+0000 mgr.smithi040.evuiyl (mgr.14180) 693 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:46.886 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:46 smithi040 bash[24841]: audit 2023-12-08T23:00:44.938802+0000 mgr.smithi040.evuiyl (mgr.14180) 693 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:47.776 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:47 smithi040 bash[24841]: cluster 2023-12-08T23:00:45.731556+0000 mgr.smithi040.evuiyl (mgr.14180) 694 : cluster [DBG] pgmap v488: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:47 smithi149 bash[28710]: cluster 2023-12-08T23:00:45.731556+0000 mgr.smithi040.evuiyl (mgr.14180) 694 : cluster [DBG] pgmap v488: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:48 smithi149 bash[28710]: cluster 2023-12-08T23:00:47.732652+0000 mgr.smithi040.evuiyl (mgr.14180) 695 : cluster [DBG] pgmap v489: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:49.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:48 smithi040 bash[24841]: cluster 2023-12-08T23:00:47.732652+0000 mgr.smithi040.evuiyl (mgr.14180) 695 : cluster [DBG] pgmap v489: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:49.891 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:49.892 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:50.648 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:51.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:50 smithi040 bash[24841]: cluster 2023-12-08T23:00:49.733708+0000 mgr.smithi040.evuiyl (mgr.14180) 696 : cluster [DBG] pgmap v490: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:51.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:50 smithi040 bash[24841]: audit 2023-12-08T23:00:49.874698+0000 mgr.smithi040.evuiyl (mgr.14180) 697 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:51.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:50 smithi149 bash[28710]: cluster 2023-12-08T23:00:49.733708+0000 mgr.smithi040.evuiyl (mgr.14180) 696 : cluster [DBG] pgmap v490: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:00:51.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:50 smithi149 bash[28710]: audit 2023-12-08T23:00:49.874698+0000 mgr.smithi040.evuiyl (mgr.14180) 697 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:51.649 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:53.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:53 smithi040 bash[24841]: cluster 2023-12-08T23:00:51.735036+0000 mgr.smithi040.evuiyl (mgr.14180) 698 : cluster [DBG] pgmap v491: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:53 smithi149 bash[28710]: cluster 2023-12-08T23:00:51.735036+0000 mgr.smithi040.evuiyl (mgr.14180) 698 : cluster [DBG] pgmap v491: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:54.935 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:54.935 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:00:55.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:55 smithi040 bash[24841]: cluster 2023-12-08T23:00:53.736275+0000 mgr.smithi040.evuiyl (mgr.14180) 699 : cluster [DBG] pgmap v492: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:55.659 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:00:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:55 smithi149 bash[28710]: cluster 2023-12-08T23:00:53.736275+0000 mgr.smithi040.evuiyl (mgr.14180) 699 : cluster [DBG] pgmap v492: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:56.660 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:00:56.672 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:56 smithi040 bash[24841]: audit 2023-12-08T23:00:54.918846+0000 mgr.smithi040.evuiyl (mgr.14180) 700 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:56 smithi149 bash[28710]: audit 2023-12-08T23:00:54.918846+0000 mgr.smithi040.evuiyl (mgr.14180) 700 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:00:57.714 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:57 smithi040 bash[24841]: cluster 2023-12-08T23:00:55.737536+0000 mgr.smithi040.evuiyl (mgr.14180) 701 : cluster [DBG] pgmap v493: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:57 smithi149 bash[28710]: cluster 2023-12-08T23:00:55.737536+0000 mgr.smithi040.evuiyl (mgr.14180) 701 : cluster [DBG] pgmap v493: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:57.709357+0000 mon.smithi040 (mon.0) 846 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:58.009703+0000 mon.smithi040 (mon.0) 847 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:58.011252+0000 mon.smithi040 (mon.0) 848 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:58.019386+0000 mon.smithi040 (mon.0) 849 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:58.026184+0000 mon.smithi040 (mon.0) 850 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:00:58.662 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:58 smithi040 bash[24841]: audit 2023-12-08T23:00:58.038273+0000 mon.smithi040 (mon.0) 851 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:58.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:57.709357+0000 mon.smithi040 (mon.0) 846 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:00:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:58.009703+0000 mon.smithi040 (mon.0) 847 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:00:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:58.011252+0000 mon.smithi040 (mon.0) 848 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:00:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:58.019386+0000 mon.smithi040 (mon.0) 849 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:58.026184+0000 mon.smithi040 (mon.0) 850 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:00:58.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:58 smithi149 bash[28710]: audit 2023-12-08T23:00:58.038273+0000 mon.smithi040 (mon.0) 851 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:00:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:59 smithi040 bash[24841]: cluster 2023-12-08T23:00:57.738380+0000 mgr.smithi040.evuiyl (mgr.14180) 702 : cluster [DBG] pgmap v494: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:59 smithi040 bash[24841]: cluster 2023-12-08T23:00:58.020054+0000 mgr.smithi040.evuiyl (mgr.14180) 703 : cluster [DBG] pgmap v495: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:00:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:59 smithi040 bash[24841]: cephadm 2023-12-08T23:00:58.042827+0000 mgr.smithi040.evuiyl (mgr.14180) 704 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.pwpcla on smithi149 2023-12-08T23:00:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:59 smithi040 bash[24841]: cluster 2023-12-08T23:00:58.380882+0000 mon.smithi040 (mon.0) 852 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:00:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:00:59 smithi040 bash[24841]: cluster 2023-12-08T23:00:58.380966+0000 mon.smithi040 (mon.0) 853 : cluster [INF] Cluster is now healthy 2023-12-08T23:00:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:59 smithi149 bash[28710]: cluster 2023-12-08T23:00:57.738380+0000 mgr.smithi040.evuiyl (mgr.14180) 702 : cluster [DBG] pgmap v494: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:00:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:59 smithi149 bash[28710]: cluster 2023-12-08T23:00:58.020054+0000 mgr.smithi040.evuiyl (mgr.14180) 703 : cluster [DBG] pgmap v495: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:00:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:59 smithi149 bash[28710]: cephadm 2023-12-08T23:00:58.042827+0000 mgr.smithi040.evuiyl (mgr.14180) 704 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.pwpcla on smithi149 2023-12-08T23:00:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:59 smithi149 bash[28710]: cluster 2023-12-08T23:00:58.380882+0000 mon.smithi040 (mon.0) 852 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:00:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:00:59 smithi149 bash[28710]: cluster 2023-12-08T23:00:58.380966+0000 mon.smithi040 (mon.0) 853 : cluster [INF] Cluster is now healthy 2023-12-08T23:00:59.883 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:00:59.883 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:58:49.335961Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ayqfky on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:00.690 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:01.691 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:01.705 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:01 smithi040 bash[24841]: audit 2023-12-08T23:00:59.866634+0000 mgr.smithi040.evuiyl (mgr.14180) 705 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:01.705 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:01 smithi040 bash[24841]: cluster 2023-12-08T23:01:00.021138+0000 mgr.smithi040.evuiyl (mgr.14180) 706 : cluster [DBG] pgmap v496: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:01.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:01 smithi149 bash[28710]: audit 2023-12-08T23:00:59.866634+0000 mgr.smithi040.evuiyl (mgr.14180) 705 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:01.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:01 smithi149 bash[28710]: cluster 2023-12-08T23:01:00.021138+0000 mgr.smithi040.evuiyl (mgr.14180) 706 : cluster [DBG] pgmap v496: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:02.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:02 smithi040 bash[24841]: audit 2023-12-08T23:01:02.040962+0000 mon.smithi040 (mon.0) 854 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.pwpcla"}]: dispatch 2023-12-08T23:01:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:02 smithi149 bash[28710]: audit 2023-12-08T23:01:02.040962+0000 mon.smithi040 (mon.0) 854 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.pwpcla"}]: dispatch 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: cluster 2023-12-08T23:01:02.021960+0000 mgr.smithi040.evuiyl (mgr.14180) 707 : cluster [DBG] pgmap v497: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: cephadm 2023-12-08T23:01:02.039852+0000 mgr.smithi040.evuiyl (mgr.14180) 708 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: cephadm 2023-12-08T23:01:02.040466+0000 mgr.smithi040.evuiyl (mgr.14180) 709 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: cephadm 2023-12-08T23:01:02.042223+0000 mgr.smithi040.evuiyl (mgr.14180) 710 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: cephadm 2023-12-08T23:01:02.047262+0000 mgr.smithi040.evuiyl (mgr.14180) 711 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.rcephw on smithi040 2023-12-08T23:01:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:03 smithi040 bash[24841]: audit 2023-12-08T23:01:02.432605+0000 mon.smithi040 (mon.0) 855 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: cluster 2023-12-08T23:01:02.021960+0000 mgr.smithi040.evuiyl (mgr.14180) 707 : cluster [DBG] pgmap v497: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: cephadm 2023-12-08T23:01:02.039852+0000 mgr.smithi040.evuiyl (mgr.14180) 708 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: cephadm 2023-12-08T23:01:02.040466+0000 mgr.smithi040.evuiyl (mgr.14180) 709 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: cephadm 2023-12-08T23:01:02.042223+0000 mgr.smithi040.evuiyl (mgr.14180) 710 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.pwpcla ... 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:03.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:03.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:03.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: cephadm 2023-12-08T23:01:02.047262+0000 mgr.smithi040.evuiyl (mgr.14180) 711 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.rcephw on smithi040 2023-12-08T23:01:03.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:03 smithi149 bash[28710]: audit 2023-12-08T23:01:02.432605+0000 mon.smithi040 (mon.0) 855 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:05.043 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:05.044 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:53.549079Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zugyza on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zugyza\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zugyza\nDeploy daemon haproxy.nfs.foo.smithi149.zugyza ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.700937Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zlrddv on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zlrddv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zlrddv\nDeploy daemon haproxy.nfs.foo.smithi040.zlrddv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T22:59:57.703079Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.imsqby on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:05.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:05 smithi040 bash[24841]: cluster 2023-12-08T23:01:04.022937+0000 mgr.smithi040.evuiyl (mgr.14180) 712 : cluster [DBG] pgmap v498: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:05.751 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:05 smithi149 bash[28710]: cluster 2023-12-08T23:01:04.022937+0000 mgr.smithi040.evuiyl (mgr.14180) 712 : cluster [DBG] pgmap v498: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:06.752 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:06.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:06 smithi040 bash[24841]: audit 2023-12-08T23:01:05.026841+0000 mgr.smithi040.evuiyl (mgr.14180) 713 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:06.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:06 smithi040 bash[24841]: audit 2023-12-08T23:01:05.997030+0000 mon.smithi040 (mon.0) 856 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.rcephw"}]: dispatch 2023-12-08T23:01:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:06 smithi149 bash[28710]: audit 2023-12-08T23:01:05.026841+0000 mgr.smithi040.evuiyl (mgr.14180) 713 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:06 smithi149 bash[28710]: audit 2023-12-08T23:01:05.997030+0000 mon.smithi040 (mon.0) 856 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.rcephw"}]: dispatch 2023-12-08T23:01:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cephadm 2023-12-08T23:01:05.995599+0000 mgr.smithi040.evuiyl (mgr.14180) 714 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:01:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cephadm 2023-12-08T23:01:05.996263+0000 mgr.smithi040.evuiyl (mgr.14180) 715 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cephadm 2023-12-08T23:01:05.998566+0000 mgr.smithi040.evuiyl (mgr.14180) 716 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cephadm 2023-12-08T23:01:06.002063+0000 mgr.smithi040.evuiyl (mgr.14180) 717 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:01:07.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cephadm 2023-12-08T23:01:06.004016+0000 mgr.smithi040.evuiyl (mgr.14180) 718 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:01:07.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cluster 2023-12-08T23:01:06.005229+0000 mgr.smithi040.evuiyl (mgr.14180) 719 : cluster [DBG] pgmap v499: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:07.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:07 smithi040 bash[24841]: cluster 2023-12-08T23:01:06.438617+0000 mon.smithi040 (mon.0) 857 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:01:07.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cephadm 2023-12-08T23:01:05.995599+0000 mgr.smithi040.evuiyl (mgr.14180) 714 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:01:07.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cephadm 2023-12-08T23:01:05.996263+0000 mgr.smithi040.evuiyl (mgr.14180) 715 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cephadm 2023-12-08T23:01:05.998566+0000 mgr.smithi040.evuiyl (mgr.14180) 716 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rcephw ... 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cephadm 2023-12-08T23:01:06.002063+0000 mgr.smithi040.evuiyl (mgr.14180) 717 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cephadm 2023-12-08T23:01:06.004016+0000 mgr.smithi040.evuiyl (mgr.14180) 718 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cluster 2023-12-08T23:01:06.005229+0000 mgr.smithi040.evuiyl (mgr.14180) 719 : cluster [DBG] pgmap v499: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:07.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:07 smithi149 bash[28710]: cluster 2023-12-08T23:01:06.438617+0000 mon.smithi040 (mon.0) 857 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:01:09.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:09 smithi040 bash[24841]: cluster 2023-12-08T23:01:08.006328+0000 mgr.smithi040.evuiyl (mgr.14180) 720 : cluster [DBG] pgmap v500: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:09 smithi149 bash[28710]: cluster 2023-12-08T23:01:08.006328+0000 mgr.smithi040.evuiyl (mgr.14180) 720 : cluster [DBG] pgmap v500: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:01:10.008 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:10.008 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:10.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:11.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:10 smithi040 bash[24841]: audit 2023-12-08T23:01:09.748566+0000 mon.smithi040 (mon.0) 858 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:11.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:10 smithi040 bash[24841]: audit 2023-12-08T23:01:09.994480+0000 mgr.smithi040.evuiyl (mgr.14180) 721 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:11.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:10 smithi040 bash[24841]: cluster 2023-12-08T23:01:10.007601+0000 mgr.smithi040.evuiyl (mgr.14180) 722 : cluster [DBG] pgmap v501: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:11.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:10 smithi149 bash[28710]: audit 2023-12-08T23:01:09.748566+0000 mon.smithi040 (mon.0) 858 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:11.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:10 smithi149 bash[28710]: audit 2023-12-08T23:01:09.994480+0000 mgr.smithi040.evuiyl (mgr.14180) 721 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:11.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:10 smithi149 bash[28710]: cluster 2023-12-08T23:01:10.007601+0000 mgr.smithi040.evuiyl (mgr.14180) 722 : cluster [DBG] pgmap v501: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:11.761 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:13.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:13 smithi040 bash[24841]: cluster 2023-12-08T23:01:12.008811+0000 mgr.smithi040.evuiyl (mgr.14180) 723 : cluster [DBG] pgmap v502: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:13 smithi149 bash[28710]: cluster 2023-12-08T23:01:12.008811+0000 mgr.smithi040.evuiyl (mgr.14180) 723 : cluster [DBG] pgmap v502: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:14.904 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:14.904 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:15.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:15 smithi040 bash[24841]: cluster 2023-12-08T23:01:14.010007+0000 mgr.smithi040.evuiyl (mgr.14180) 724 : cluster [DBG] pgmap v503: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:15.700 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:15 smithi149 bash[28710]: cluster 2023-12-08T23:01:14.010007+0000 mgr.smithi040.evuiyl (mgr.14180) 724 : cluster [DBG] pgmap v503: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:16.701 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:16.715 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:16 smithi040 bash[24841]: audit 2023-12-08T23:01:14.891107+0000 mgr.smithi040.evuiyl (mgr.14180) 725 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:16 smithi149 bash[28710]: audit 2023-12-08T23:01:14.891107+0000 mgr.smithi040.evuiyl (mgr.14180) 725 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:17.738 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:17 smithi040 bash[24841]: cluster 2023-12-08T23:01:16.011230+0000 mgr.smithi040.evuiyl (mgr.14180) 726 : cluster [DBG] pgmap v504: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:17 smithi149 bash[28710]: cluster 2023-12-08T23:01:16.011230+0000 mgr.smithi040.evuiyl (mgr.14180) 726 : cluster [DBG] pgmap v504: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:18.713 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:18 smithi040 bash[24841]: audit 2023-12-08T23:01:17.435861+0000 mon.smithi040 (mon.0) 859 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:18 smithi149 bash[28710]: audit 2023-12-08T23:01:17.435861+0000 mon.smithi040 (mon.0) 859 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:01:19.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:19 smithi040 bash[24841]: cluster 2023-12-08T23:01:18.012404+0000 mgr.smithi040.evuiyl (mgr.14180) 727 : cluster [DBG] pgmap v505: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:19 smithi149 bash[28710]: cluster 2023-12-08T23:01:18.012404+0000 mgr.smithi040.evuiyl (mgr.14180) 727 : cluster [DBG] pgmap v505: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:19.988 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:19.989 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:20.743 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:21.744 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:21 smithi149 bash[28710]: audit 2023-12-08T23:01:19.971216+0000 mgr.smithi040.evuiyl (mgr.14180) 728 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:21 smithi149 bash[28710]: cluster 2023-12-08T23:01:20.013426+0000 mgr.smithi040.evuiyl (mgr.14180) 729 : cluster [DBG] pgmap v506: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:21.759 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:21 smithi040 bash[24841]: audit 2023-12-08T23:01:19.971216+0000 mgr.smithi040.evuiyl (mgr.14180) 728 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:21.759 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:21 smithi040 bash[24841]: cluster 2023-12-08T23:01:20.013426+0000 mgr.smithi040.evuiyl (mgr.14180) 729 : cluster [DBG] pgmap v506: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:23 smithi040 bash[24841]: cluster 2023-12-08T23:01:22.014649+0000 mgr.smithi040.evuiyl (mgr.14180) 730 : cluster [DBG] pgmap v507: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:23 smithi149 bash[28710]: cluster 2023-12-08T23:01:22.014649+0000 mgr.smithi040.evuiyl (mgr.14180) 730 : cluster [DBG] pgmap v507: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:25.037 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:25.037 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:25.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:25 smithi040 bash[24841]: cluster 2023-12-08T23:01:24.015778+0000 mgr.smithi040.evuiyl (mgr.14180) 731 : cluster [DBG] pgmap v508: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:25.812 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:25 smithi149 bash[28710]: cluster 2023-12-08T23:01:24.015778+0000 mgr.smithi040.evuiyl (mgr.14180) 731 : cluster [DBG] pgmap v508: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:26.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:26 smithi040 bash[24841]: audit 2023-12-08T23:01:25.023973+0000 mgr.smithi040.evuiyl (mgr.14180) 732 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:26.813 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:26 smithi149 bash[28710]: audit 2023-12-08T23:01:25.023973+0000 mgr.smithi040.evuiyl (mgr.14180) 732 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:27.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:27 smithi040 bash[24841]: cluster 2023-12-08T23:01:26.016984+0000 mgr.smithi040.evuiyl (mgr.14180) 733 : cluster [DBG] pgmap v509: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:27 smithi149 bash[28710]: cluster 2023-12-08T23:01:26.016984+0000 mgr.smithi040.evuiyl (mgr.14180) 733 : cluster [DBG] pgmap v509: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:29.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:29 smithi040 bash[24841]: cluster 2023-12-08T23:01:28.017687+0000 mgr.smithi040.evuiyl (mgr.14180) 734 : cluster [DBG] pgmap v510: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:29 smithi149 bash[28710]: cluster 2023-12-08T23:01:28.017687+0000 mgr.smithi040.evuiyl (mgr.14180) 734 : cluster [DBG] pgmap v510: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:30.062 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:30.062 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:30.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:31.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:31 smithi040 bash[24841]: cluster 2023-12-08T23:01:30.018497+0000 mgr.smithi040.evuiyl (mgr.14180) 735 : cluster [DBG] pgmap v511: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:31 smithi040 bash[24841]: audit 2023-12-08T23:01:30.047719+0000 mgr.smithi040.evuiyl (mgr.14180) 736 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:31.802 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:31 smithi149 bash[28710]: cluster 2023-12-08T23:01:30.018497+0000 mgr.smithi040.evuiyl (mgr.14180) 735 : cluster [DBG] pgmap v511: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:31 smithi149 bash[28710]: audit 2023-12-08T23:01:30.047719+0000 mgr.smithi040.evuiyl (mgr.14180) 736 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:33.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:33 smithi040 bash[24841]: cluster 2023-12-08T23:01:32.019628+0000 mgr.smithi040.evuiyl (mgr.14180) 737 : cluster [DBG] pgmap v512: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:33 smithi149 bash[28710]: cluster 2023-12-08T23:01:32.019628+0000 mgr.smithi040.evuiyl (mgr.14180) 737 : cluster [DBG] pgmap v512: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:35.040 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:35.040 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:35 smithi040 bash[24841]: cluster 2023-12-08T23:01:34.020755+0000 mgr.smithi040.evuiyl (mgr.14180) 738 : cluster [DBG] pgmap v513: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:35.767 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:35 smithi149 bash[28710]: cluster 2023-12-08T23:01:34.020755+0000 mgr.smithi040.evuiyl (mgr.14180) 738 : cluster [DBG] pgmap v513: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:36.767 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:36.781 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:36 smithi040 bash[24841]: audit 2023-12-08T23:01:35.025982+0000 mgr.smithi040.evuiyl (mgr.14180) 739 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:36.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:36 smithi149 bash[28710]: audit 2023-12-08T23:01:35.025982+0000 mgr.smithi040.evuiyl (mgr.14180) 739 : audit [DBG] from='client.14988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:37 smithi149 bash[28710]: cluster 2023-12-08T23:01:36.022003+0000 mgr.smithi040.evuiyl (mgr.14180) 740 : cluster [DBG] pgmap v514: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:37.834 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:37 smithi040 bash[24841]: cluster 2023-12-08T23:01:36.022003+0000 mgr.smithi040.evuiyl (mgr.14180) 740 : cluster [DBG] pgmap v514: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:39 smithi149 bash[28710]: cluster 2023-12-08T23:01:38.022951+0000 mgr.smithi040.evuiyl (mgr.14180) 741 : cluster [DBG] pgmap v515: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:39.983 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:39.983 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:40.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:39 smithi040 bash[24841]: cluster 2023-12-08T23:01:38.022951+0000 mgr.smithi040.evuiyl (mgr.14180) 741 : cluster [DBG] pgmap v515: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:40.737 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:41.737 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:41.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:41 smithi149 bash[28710]: audit 2023-12-08T23:01:39.969845+0000 mgr.smithi040.evuiyl (mgr.14180) 742 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:41.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:41 smithi149 bash[28710]: cluster 2023-12-08T23:01:40.024073+0000 mgr.smithi040.evuiyl (mgr.14180) 743 : cluster [DBG] pgmap v516: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:41.937 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:41 smithi040 bash[24841]: audit 2023-12-08T23:01:39.969845+0000 mgr.smithi040.evuiyl (mgr.14180) 742 : audit [DBG] from='client.14992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:41.937 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:41 smithi040 bash[24841]: cluster 2023-12-08T23:01:40.024073+0000 mgr.smithi040.evuiyl (mgr.14180) 743 : cluster [DBG] pgmap v516: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:43.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:43 smithi040 bash[24841]: cluster 2023-12-08T23:01:42.025247+0000 mgr.smithi040.evuiyl (mgr.14180) 744 : cluster [DBG] pgmap v517: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:43 smithi149 bash[28710]: cluster 2023-12-08T23:01:42.025247+0000 mgr.smithi040.evuiyl (mgr.14180) 744 : cluster [DBG] pgmap v517: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:45.060 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:45.061 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:45 smithi040 bash[24841]: cluster 2023-12-08T23:01:44.026441+0000 mgr.smithi040.evuiyl (mgr.14180) 745 : cluster [DBG] pgmap v518: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:45.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:45 smithi149 bash[28710]: cluster 2023-12-08T23:01:44.026441+0000 mgr.smithi040.evuiyl (mgr.14180) 745 : cluster [DBG] pgmap v518: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:45.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:46 smithi040 bash[24841]: audit 2023-12-08T23:01:45.047267+0000 mgr.smithi040.evuiyl (mgr.14180) 746 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:46.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:46 smithi149 bash[28710]: audit 2023-12-08T23:01:45.047267+0000 mgr.smithi040.evuiyl (mgr.14180) 746 : audit [DBG] from='client.14996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:46.830 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:47.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:47 smithi040 bash[24841]: cluster 2023-12-08T23:01:46.027627+0000 mgr.smithi040.evuiyl (mgr.14180) 747 : cluster [DBG] pgmap v519: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:47 smithi149 bash[28710]: cluster 2023-12-08T23:01:46.027627+0000 mgr.smithi040.evuiyl (mgr.14180) 747 : cluster [DBG] pgmap v519: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:49 smithi040 bash[24841]: cluster 2023-12-08T23:01:48.028530+0000 mgr.smithi040.evuiyl (mgr.14180) 748 : cluster [DBG] pgmap v520: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:49.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:49 smithi149 bash[28710]: cluster 2023-12-08T23:01:48.028530+0000 mgr.smithi040.evuiyl (mgr.14180) 748 : cluster [DBG] pgmap v520: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:49.873 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:49.873 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:50.620 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:51.621 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:51.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:51 smithi149 bash[28710]: audit 2023-12-08T23:01:49.855473+0000 mgr.smithi040.evuiyl (mgr.14180) 749 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:51.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:51 smithi149 bash[28710]: cluster 2023-12-08T23:01:50.029893+0000 mgr.smithi040.evuiyl (mgr.14180) 750 : cluster [DBG] pgmap v521: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:51 smithi040 bash[24841]: audit 2023-12-08T23:01:49.855473+0000 mgr.smithi040.evuiyl (mgr.14180) 749 : audit [DBG] from='client.15000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:51.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:51 smithi040 bash[24841]: cluster 2023-12-08T23:01:50.029893+0000 mgr.smithi040.evuiyl (mgr.14180) 750 : cluster [DBG] pgmap v521: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:01:53.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:53 smithi040 bash[24841]: cluster 2023-12-08T23:01:52.031150+0000 mgr.smithi040.evuiyl (mgr.14180) 751 : cluster [DBG] pgmap v522: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:53 smithi149 bash[28710]: cluster 2023-12-08T23:01:52.031150+0000 mgr.smithi040.evuiyl (mgr.14180) 751 : cluster [DBG] pgmap v522: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:54.839 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:54.839 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:01:55.560 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:01:55.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:55 smithi040 bash[24841]: cluster 2023-12-08T23:01:54.032405+0000 mgr.smithi040.evuiyl (mgr.14180) 752 : cluster [DBG] pgmap v523: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:55 smithi149 bash[28710]: cluster 2023-12-08T23:01:54.032405+0000 mgr.smithi040.evuiyl (mgr.14180) 752 : cluster [DBG] pgmap v523: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:56.561 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:01:56.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:56 smithi040 bash[24841]: audit 2023-12-08T23:01:54.818192+0000 mgr.smithi040.evuiyl (mgr.14180) 753 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:56 smithi149 bash[28710]: audit 2023-12-08T23:01:54.818192+0000 mgr.smithi040.evuiyl (mgr.14180) 753 : audit [DBG] from='client.15004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:01:57.702 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:57 smithi040 bash[24841]: cluster 2023-12-08T23:01:56.033744+0000 mgr.smithi040.evuiyl (mgr.14180) 754 : cluster [DBG] pgmap v524: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:57 smithi149 bash[28710]: cluster 2023-12-08T23:01:56.033744+0000 mgr.smithi040.evuiyl (mgr.14180) 754 : cluster [DBG] pgmap v524: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:01:59 smithi040 bash[24841]: cluster 2023-12-08T23:01:58.035106+0000 mgr.smithi040.evuiyl (mgr.14180) 755 : cluster [DBG] pgmap v525: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:01:59 smithi149 bash[28710]: cluster 2023-12-08T23:01:58.035106+0000 mgr.smithi040.evuiyl (mgr.14180) 755 : cluster [DBG] pgmap v525: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:01:59.826 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:01:59.826 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:00.624 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:01.625 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:01.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:01 smithi149 bash[28710]: audit 2023-12-08T23:01:59.807034+0000 mgr.smithi040.evuiyl (mgr.14180) 756 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:01.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:01 smithi149 bash[28710]: cluster 2023-12-08T23:02:00.036508+0000 mgr.smithi040.evuiyl (mgr.14180) 757 : cluster [DBG] pgmap v526: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:01.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:01 smithi040 bash[24841]: audit 2023-12-08T23:01:59.807034+0000 mgr.smithi040.evuiyl (mgr.14180) 756 : audit [DBG] from='client.15008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:01.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:01 smithi040 bash[24841]: cluster 2023-12-08T23:02:00.036508+0000 mgr.smithi040.evuiyl (mgr.14180) 757 : cluster [DBG] pgmap v526: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:03.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:03 smithi040 bash[24841]: cluster 2023-12-08T23:02:02.037580+0000 mgr.smithi040.evuiyl (mgr.14180) 758 : cluster [DBG] pgmap v527: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:03 smithi149 bash[28710]: cluster 2023-12-08T23:02:02.037580+0000 mgr.smithi040.evuiyl (mgr.14180) 758 : cluster [DBG] pgmap v527: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:05.020 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:05.020 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:05.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:05 smithi040 bash[24841]: cluster 2023-12-08T23:02:04.038624+0000 mgr.smithi040.evuiyl (mgr.14180) 759 : cluster [DBG] pgmap v528: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:05.744 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:05 smithi149 bash[28710]: cluster 2023-12-08T23:02:04.038624+0000 mgr.smithi040.evuiyl (mgr.14180) 759 : cluster [DBG] pgmap v528: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:06.745 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:06.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:05.006669+0000 mgr.smithi040.evuiyl (mgr.14180) 760 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:06.757 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.007984+0000 mon.smithi040 (mon.0) 860 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:02:06.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.315862+0000 mon.smithi040 (mon.0) 861 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:02:06.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.317381+0000 mon.smithi040 (mon.0) 862 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:02:06.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.325178+0000 mon.smithi040 (mon.0) 863 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:06.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.333935+0000 mon.smithi040 (mon.0) 864 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:02:06.758 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:06 smithi040 bash[24841]: audit 2023-12-08T23:02:06.348521+0000 mon.smithi040 (mon.0) 865 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:05.006669+0000 mgr.smithi040.evuiyl (mgr.14180) 760 : audit [DBG] from='client.15012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.007984+0000 mon.smithi040 (mon.0) 860 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:02:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.315862+0000 mon.smithi040 (mon.0) 861 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:02:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.317381+0000 mon.smithi040 (mon.0) 862 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:02:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.325178+0000 mon.smithi040 (mon.0) 863 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.333935+0000 mon.smithi040 (mon.0) 864 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:02:06.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:06 smithi149 bash[28710]: audit 2023-12-08T23:02:06.348521+0000 mon.smithi040 (mon.0) 865 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:07 smithi040 bash[24841]: cluster 2023-12-08T23:02:06.039739+0000 mgr.smithi040.evuiyl (mgr.14180) 761 : cluster [DBG] pgmap v529: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:07 smithi040 bash[24841]: cluster 2023-12-08T23:02:06.326033+0000 mgr.smithi040.evuiyl (mgr.14180) 762 : cluster [DBG] pgmap v530: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:07 smithi040 bash[24841]: cephadm 2023-12-08T23:02:06.353361+0000 mgr.smithi040.evuiyl (mgr.14180) 763 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.vhdxvb on smithi149 2023-12-08T23:02:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:07 smithi040 bash[24841]: cluster 2023-12-08T23:02:06.453851+0000 mon.smithi040 (mon.0) 866 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:02:07.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:07 smithi040 bash[24841]: cluster 2023-12-08T23:02:06.453906+0000 mon.smithi040 (mon.0) 867 : cluster [INF] Cluster is now healthy 2023-12-08T23:02:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:07 smithi149 bash[28710]: cluster 2023-12-08T23:02:06.039739+0000 mgr.smithi040.evuiyl (mgr.14180) 761 : cluster [DBG] pgmap v529: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:07 smithi149 bash[28710]: cluster 2023-12-08T23:02:06.326033+0000 mgr.smithi040.evuiyl (mgr.14180) 762 : cluster [DBG] pgmap v530: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:07 smithi149 bash[28710]: cephadm 2023-12-08T23:02:06.353361+0000 mgr.smithi040.evuiyl (mgr.14180) 763 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.vhdxvb on smithi149 2023-12-08T23:02:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:07 smithi149 bash[28710]: cluster 2023-12-08T23:02:06.453851+0000 mon.smithi040 (mon.0) 866 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:02:07.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:07 smithi149 bash[28710]: cluster 2023-12-08T23:02:06.453906+0000 mon.smithi040 (mon.0) 867 : cluster [INF] Cluster is now healthy 2023-12-08T23:02:09.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:09 smithi040 bash[24841]: cluster 2023-12-08T23:02:08.326900+0000 mgr.smithi040.evuiyl (mgr.14180) 764 : cluster [DBG] pgmap v531: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:09.791 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:09.791 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T22:59:57.704843Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.reelxu on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:02.041953Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.pwpcla on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-pwpcla\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.pwpcla\nDeploy daemon haproxy.nfs.foo.smithi149.pwpcla ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:05.998314Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rcephw on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rcephw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rcephw\nDeploy daemon haproxy.nfs.foo.smithi040.rcephw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:01:06.001911Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.uaypvh on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:09 smithi149 bash[28710]: cluster 2023-12-08T23:02:08.326900+0000 mgr.smithi040.evuiyl (mgr.14180) 764 : cluster [DBG] pgmap v531: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:10.686 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:10.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:10 smithi040 bash[24841]: audit 2023-12-08T23:02:10.155518+0000 mon.smithi040 (mon.0) 868 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.vhdxvb"}]: dispatch 2023-12-08T23:02:10.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:10 smithi149 bash[28710]: audit 2023-12-08T23:02:10.155518+0000 mon.smithi040 (mon.0) 868 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.vhdxvb"}]: dispatch 2023-12-08T23:02:11.687 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: audit 2023-12-08T23:02:09.772681+0000 mgr.smithi040.evuiyl (mgr.14180) 765 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: cephadm 2023-12-08T23:02:10.154487+0000 mgr.smithi040.evuiyl (mgr.14180) 766 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.746 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: cephadm 2023-12-08T23:02:10.155015+0000 mgr.smithi040.evuiyl (mgr.14180) 767 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: cephadm 2023-12-08T23:02:10.156867+0000 mgr.smithi040.evuiyl (mgr.14180) 768 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.747 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: cephadm 2023-12-08T23:02:10.160565+0000 mgr.smithi040.evuiyl (mgr.14180) 769 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.zgmaqg on smithi040 2023-12-08T23:02:11.748 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:11 smithi149 bash[28710]: cluster 2023-12-08T23:02:10.328038+0000 mgr.smithi040.evuiyl (mgr.14180) 770 : cluster [DBG] pgmap v532: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: audit 2023-12-08T23:02:09.772681+0000 mgr.smithi040.evuiyl (mgr.14180) 765 : audit [DBG] from='client.15016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: cephadm 2023-12-08T23:02:10.154487+0000 mgr.smithi040.evuiyl (mgr.14180) 766 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:02:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: cephadm 2023-12-08T23:02:10.155015+0000 mgr.smithi040.evuiyl (mgr.14180) 767 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: cephadm 2023-12-08T23:02:10.156867+0000 mgr.smithi040.evuiyl (mgr.14180) 768 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.vhdxvb ... 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: cephadm 2023-12-08T23:02:10.160565+0000 mgr.smithi040.evuiyl (mgr.14180) 769 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.zgmaqg on smithi040 2023-12-08T23:02:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:11 smithi040 bash[24841]: cluster 2023-12-08T23:02:10.328038+0000 mgr.smithi040.evuiyl (mgr.14180) 770 : cluster [DBG] pgmap v532: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:13.613 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:13 smithi040 bash[24841]: cluster 2023-12-08T23:02:12.328973+0000 mgr.smithi040.evuiyl (mgr.14180) 771 : cluster [DBG] pgmap v533: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:13 smithi149 bash[28710]: cluster 2023-12-08T23:02:12.328973+0000 mgr.smithi040.evuiyl (mgr.14180) 771 : cluster [DBG] pgmap v533: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:14.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:14 smithi040 bash[24841]: audit 2023-12-08T23:02:14.441332+0000 mon.smithi040 (mon.0) 869 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.zgmaqg"}]: dispatch 2023-12-08T23:02:14.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:14 smithi149 bash[28710]: audit 2023-12-08T23:02:14.441332+0000 mon.smithi040 (mon.0) 869 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.zgmaqg"}]: dispatch 2023-12-08T23:02:15.289 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:15.289 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cluster 2023-12-08T23:02:14.329981+0000 mgr.smithi040.evuiyl (mgr.14180) 772 : cluster [DBG] pgmap v534: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cephadm 2023-12-08T23:02:14.440625+0000 mgr.smithi040.evuiyl (mgr.14180) 773 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cephadm 2023-12-08T23:02:14.440849+0000 mgr.smithi040.evuiyl (mgr.14180) 774 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cephadm 2023-12-08T23:02:14.442517+0000 mgr.smithi040.evuiyl (mgr.14180) 775 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cephadm 2023-12-08T23:02:14.444800+0000 mgr.smithi040.evuiyl (mgr.14180) 776 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cephadm 2023-12-08T23:02:14.446422+0000 mgr.smithi040.evuiyl (mgr.14180) 777 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cluster 2023-12-08T23:02:14.447662+0000 mgr.smithi040.evuiyl (mgr.14180) 778 : cluster [DBG] pgmap v535: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 243 B/s rd, 0 op/s 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: cluster 2023-12-08T23:02:14.491279+0000 mon.smithi040 (mon.0) 870 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:02:15.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:15 smithi040 bash[24841]: audit 2023-12-08T23:02:14.796911+0000 mon.smithi040 (mon.0) 871 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cluster 2023-12-08T23:02:14.329981+0000 mgr.smithi040.evuiyl (mgr.14180) 772 : cluster [DBG] pgmap v534: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cephadm 2023-12-08T23:02:14.440625+0000 mgr.smithi040.evuiyl (mgr.14180) 773 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cephadm 2023-12-08T23:02:14.440849+0000 mgr.smithi040.evuiyl (mgr.14180) 774 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cephadm 2023-12-08T23:02:14.442517+0000 mgr.smithi040.evuiyl (mgr.14180) 775 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.zgmaqg ... 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:02:15.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cephadm 2023-12-08T23:02:14.444800+0000 mgr.smithi040.evuiyl (mgr.14180) 776 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cephadm 2023-12-08T23:02:14.446422+0000 mgr.smithi040.evuiyl (mgr.14180) 777 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cluster 2023-12-08T23:02:14.447662+0000 mgr.smithi040.evuiyl (mgr.14180) 778 : cluster [DBG] pgmap v535: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 243 B/s rd, 0 op/s 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: cluster 2023-12-08T23:02:14.491279+0000 mon.smithi040 (mon.0) 870 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:02:15.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:15 smithi149 bash[28710]: audit 2023-12-08T23:02:14.796911+0000 mon.smithi040 (mon.0) 871 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:02:16.083 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:16 smithi149 bash[28710]: audit 2023-12-08T23:02:15.275936+0000 mgr.smithi040.evuiyl (mgr.14180) 779 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:17.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:16 smithi040 bash[24841]: audit 2023-12-08T23:02:15.275936+0000 mgr.smithi040.evuiyl (mgr.14180) 779 : audit [DBG] from='client.15020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:17.084 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:17 smithi040 bash[24841]: cluster 2023-12-08T23:02:16.448856+0000 mgr.smithi040.evuiyl (mgr.14180) 780 : cluster [DBG] pgmap v536: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:17 smithi149 bash[28710]: cluster 2023-12-08T23:02:16.448856+0000 mgr.smithi040.evuiyl (mgr.14180) 780 : cluster [DBG] pgmap v536: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:19.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:19 smithi149 bash[28710]: cluster 2023-12-08T23:02:18.449703+0000 mgr.smithi040.evuiyl (mgr.14180) 781 : cluster [DBG] pgmap v537: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:19.881 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:19 smithi040 bash[24841]: cluster 2023-12-08T23:02:18.449703+0000 mgr.smithi040.evuiyl (mgr.14180) 781 : cluster [DBG] pgmap v537: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:20.297 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:20.297 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:21.072 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:21.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:21 smithi149 bash[28710]: audit 2023-12-08T23:02:20.279775+0000 mgr.smithi040.evuiyl (mgr.14180) 782 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:21.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:21 smithi149 bash[28710]: cluster 2023-12-08T23:02:20.450381+0000 mgr.smithi040.evuiyl (mgr.14180) 783 : cluster [DBG] pgmap v538: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:21.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:21 smithi040 bash[24841]: audit 2023-12-08T23:02:20.279775+0000 mgr.smithi040.evuiyl (mgr.14180) 782 : audit [DBG] from='client.15024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:21.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:21 smithi040 bash[24841]: cluster 2023-12-08T23:02:20.450381+0000 mgr.smithi040.evuiyl (mgr.14180) 783 : cluster [DBG] pgmap v538: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:22.073 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:23 smithi040 bash[24841]: cluster 2023-12-08T23:02:22.451624+0000 mgr.smithi040.evuiyl (mgr.14180) 784 : cluster [DBG] pgmap v539: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:23 smithi149 bash[28710]: cluster 2023-12-08T23:02:22.451624+0000 mgr.smithi040.evuiyl (mgr.14180) 784 : cluster [DBG] pgmap v539: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:25.163 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:25.163 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:25.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:25 smithi040 bash[24841]: cluster 2023-12-08T23:02:24.453013+0000 mgr.smithi040.evuiyl (mgr.14180) 785 : cluster [DBG] pgmap v540: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:25.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:25 smithi149 bash[28710]: cluster 2023-12-08T23:02:24.453013+0000 mgr.smithi040.evuiyl (mgr.14180) 785 : cluster [DBG] pgmap v540: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:02:25.930 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:26 smithi149 bash[28710]: audit 2023-12-08T23:02:25.145741+0000 mgr.smithi040.evuiyl (mgr.14180) 786 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:26.931 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:26.945 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:26 smithi040 bash[24841]: audit 2023-12-08T23:02:25.145741+0000 mgr.smithi040.evuiyl (mgr.14180) 786 : audit [DBG] from='client.15028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:27 smithi149 bash[28710]: cluster 2023-12-08T23:02:26.453894+0000 mgr.smithi040.evuiyl (mgr.14180) 787 : cluster [DBG] pgmap v541: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:27.954 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:27 smithi040 bash[24841]: cluster 2023-12-08T23:02:26.453894+0000 mgr.smithi040.evuiyl (mgr.14180) 787 : cluster [DBG] pgmap v541: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:29.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:29 smithi149 bash[28710]: cluster 2023-12-08T23:02:28.455139+0000 mgr.smithi040.evuiyl (mgr.14180) 788 : cluster [DBG] pgmap v542: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:30.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:29 smithi040 bash[24841]: cluster 2023-12-08T23:02:28.455139+0000 mgr.smithi040.evuiyl (mgr.14180) 788 : cluster [DBG] pgmap v542: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:30.055 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:30.055 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:30.880 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:31 smithi149 bash[28710]: audit 2023-12-08T23:02:30.036297+0000 mgr.smithi040.evuiyl (mgr.14180) 789 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:31 smithi149 bash[28710]: cluster 2023-12-08T23:02:30.456327+0000 mgr.smithi040.evuiyl (mgr.14180) 790 : cluster [DBG] pgmap v543: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:31.882 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:31.894 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:31 smithi040 bash[24841]: audit 2023-12-08T23:02:30.036297+0000 mgr.smithi040.evuiyl (mgr.14180) 789 : audit [DBG] from='client.15032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:31.895 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:31 smithi040 bash[24841]: cluster 2023-12-08T23:02:30.456327+0000 mgr.smithi040.evuiyl (mgr.14180) 790 : cluster [DBG] pgmap v543: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:33.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:33 smithi040 bash[24841]: cluster 2023-12-08T23:02:32.457722+0000 mgr.smithi040.evuiyl (mgr.14180) 791 : cluster [DBG] pgmap v544: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:33 smithi149 bash[28710]: cluster 2023-12-08T23:02:32.457722+0000 mgr.smithi040.evuiyl (mgr.14180) 791 : cluster [DBG] pgmap v544: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:35.090 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:35.090 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:35 smithi040 bash[24841]: cluster 2023-12-08T23:02:34.458951+0000 mgr.smithi040.evuiyl (mgr.14180) 792 : cluster [DBG] pgmap v545: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:35 smithi149 bash[28710]: cluster 2023-12-08T23:02:34.458951+0000 mgr.smithi040.evuiyl (mgr.14180) 792 : cluster [DBG] pgmap v545: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:35.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:36.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:36 smithi149 bash[28710]: audit 2023-12-08T23:02:35.077063+0000 mgr.smithi040.evuiyl (mgr.14180) 793 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:36.878 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:36.890 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:36 smithi040 bash[24841]: audit 2023-12-08T23:02:35.077063+0000 mgr.smithi040.evuiyl (mgr.14180) 793 : audit [DBG] from='client.15036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:37 smithi149 bash[28710]: cluster 2023-12-08T23:02:36.460167+0000 mgr.smithi040.evuiyl (mgr.14180) 794 : cluster [DBG] pgmap v546: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:37.960 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:37 smithi040 bash[24841]: cluster 2023-12-08T23:02:36.460167+0000 mgr.smithi040.evuiyl (mgr.14180) 794 : cluster [DBG] pgmap v546: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:39 smithi149 bash[28710]: cluster 2023-12-08T23:02:38.460842+0000 mgr.smithi040.evuiyl (mgr.14180) 795 : cluster [DBG] pgmap v547: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:39.933 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:39.933 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:39.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:39 smithi040 bash[24841]: cluster 2023-12-08T23:02:38.460842+0000 mgr.smithi040.evuiyl (mgr.14180) 795 : cluster [DBG] pgmap v547: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:40.723 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:41.724 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:41.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:41 smithi149 bash[28710]: audit 2023-12-08T23:02:39.920873+0000 mgr.smithi040.evuiyl (mgr.14180) 796 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:41.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:41 smithi149 bash[28710]: cluster 2023-12-08T23:02:40.461423+0000 mgr.smithi040.evuiyl (mgr.14180) 797 : cluster [DBG] pgmap v548: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:41.922 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:41 smithi040 bash[24841]: audit 2023-12-08T23:02:39.920873+0000 mgr.smithi040.evuiyl (mgr.14180) 796 : audit [DBG] from='client.15040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:41.922 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:41 smithi040 bash[24841]: cluster 2023-12-08T23:02:40.461423+0000 mgr.smithi040.evuiyl (mgr.14180) 797 : cluster [DBG] pgmap v548: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:43.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:43 smithi040 bash[24841]: cluster 2023-12-08T23:02:42.462485+0000 mgr.smithi040.evuiyl (mgr.14180) 798 : cluster [DBG] pgmap v549: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:43.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:43 smithi149 bash[28710]: cluster 2023-12-08T23:02:42.462485+0000 mgr.smithi040.evuiyl (mgr.14180) 798 : cluster [DBG] pgmap v549: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:44.918 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:44.918 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:45.651 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:45.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:45 smithi149 bash[28710]: cluster 2023-12-08T23:02:44.463515+0000 mgr.smithi040.evuiyl (mgr.14180) 799 : cluster [DBG] pgmap v550: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:45 smithi040 bash[24841]: cluster 2023-12-08T23:02:44.463515+0000 mgr.smithi040.evuiyl (mgr.14180) 799 : cluster [DBG] pgmap v550: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:46.653 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:46 smithi149 bash[28710]: audit 2023-12-08T23:02:44.902865+0000 mgr.smithi040.evuiyl (mgr.14180) 800 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:46.856 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:46 smithi040 bash[24841]: audit 2023-12-08T23:02:44.902865+0000 mgr.smithi040.evuiyl (mgr.14180) 800 : audit [DBG] from='client.15044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:47 smithi149 bash[28710]: cluster 2023-12-08T23:02:46.464758+0000 mgr.smithi040.evuiyl (mgr.14180) 801 : cluster [DBG] pgmap v551: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:47.860 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:47 smithi040 bash[24841]: cluster 2023-12-08T23:02:46.464758+0000 mgr.smithi040.evuiyl (mgr.14180) 801 : cluster [DBG] pgmap v551: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:49.738 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:49.738 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:49 smithi040 bash[24841]: cluster 2023-12-08T23:02:48.465907+0000 mgr.smithi040.evuiyl (mgr.14180) 802 : cluster [DBG] pgmap v552: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:49.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:49 smithi149 bash[28710]: cluster 2023-12-08T23:02:48.465907+0000 mgr.smithi040.evuiyl (mgr.14180) 802 : cluster [DBG] pgmap v552: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:50.487 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:50 smithi040 bash[24841]: audit 2023-12-08T23:02:49.725382+0000 mgr.smithi040.evuiyl (mgr.14180) 803 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:50 smithi040 bash[24841]: cluster 2023-12-08T23:02:50.467106+0000 mgr.smithi040.evuiyl (mgr.14180) 804 : cluster [DBG] pgmap v553: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:51.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:50 smithi149 bash[28710]: audit 2023-12-08T23:02:49.725382+0000 mgr.smithi040.evuiyl (mgr.14180) 803 : audit [DBG] from='client.15048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:51.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:50 smithi149 bash[28710]: cluster 2023-12-08T23:02:50.467106+0000 mgr.smithi040.evuiyl (mgr.14180) 804 : cluster [DBG] pgmap v553: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:02:51.489 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:53.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:53 smithi040 bash[24841]: cluster 2023-12-08T23:02:52.468403+0000 mgr.smithi040.evuiyl (mgr.14180) 805 : cluster [DBG] pgmap v554: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:53 smithi149 bash[28710]: cluster 2023-12-08T23:02:52.468403+0000 mgr.smithi040.evuiyl (mgr.14180) 805 : cluster [DBG] pgmap v554: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:54.639 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:54.640 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:02:55.421 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:02:55.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:55 smithi040 bash[24841]: cluster 2023-12-08T23:02:54.469349+0000 mgr.smithi040.evuiyl (mgr.14180) 806 : cluster [DBG] pgmap v555: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:55.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:55 smithi149 bash[28710]: cluster 2023-12-08T23:02:54.469349+0000 mgr.smithi040.evuiyl (mgr.14180) 806 : cluster [DBG] pgmap v555: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:56.422 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:02:56.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:56 smithi040 bash[24841]: audit 2023-12-08T23:02:54.621927+0000 mgr.smithi040.evuiyl (mgr.14180) 807 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:56 smithi149 bash[28710]: audit 2023-12-08T23:02:54.621927+0000 mgr.smithi040.evuiyl (mgr.14180) 807 : audit [DBG] from='client.15052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:02:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:57 smithi149 bash[28710]: cluster 2023-12-08T23:02:56.470729+0000 mgr.smithi040.evuiyl (mgr.14180) 808 : cluster [DBG] pgmap v556: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:57.913 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:57 smithi040 bash[24841]: cluster 2023-12-08T23:02:56.470729+0000 mgr.smithi040.evuiyl (mgr.14180) 808 : cluster [DBG] pgmap v556: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:58.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:02:58 smithi040 bash[24841]: cluster 2023-12-08T23:02:58.472317+0000 mgr.smithi040.evuiyl (mgr.14180) 809 : cluster [DBG] pgmap v557: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:59.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:02:58 smithi149 bash[28710]: cluster 2023-12-08T23:02:58.472317+0000 mgr.smithi040.evuiyl (mgr.14180) 809 : cluster [DBG] pgmap v557: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:02:59.712 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:02:59.712 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:00.465 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:01.466 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:01.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:01 smithi040 bash[24841]: audit 2023-12-08T23:02:59.694839+0000 mgr.smithi040.evuiyl (mgr.14180) 810 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:01.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:01 smithi040 bash[24841]: cluster 2023-12-08T23:03:00.473584+0000 mgr.smithi040.evuiyl (mgr.14180) 811 : cluster [DBG] pgmap v558: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:01.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:01 smithi149 bash[28710]: audit 2023-12-08T23:02:59.694839+0000 mgr.smithi040.evuiyl (mgr.14180) 810 : audit [DBG] from='client.15056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:01.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:01 smithi149 bash[28710]: cluster 2023-12-08T23:03:00.473584+0000 mgr.smithi040.evuiyl (mgr.14180) 811 : cluster [DBG] pgmap v558: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:03.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:03 smithi040 bash[24841]: cluster 2023-12-08T23:03:02.474777+0000 mgr.smithi040.evuiyl (mgr.14180) 812 : cluster [DBG] pgmap v559: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:03 smithi149 bash[28710]: cluster 2023-12-08T23:03:02.474777+0000 mgr.smithi040.evuiyl (mgr.14180) 812 : cluster [DBG] pgmap v559: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:04.592 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:04.592 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:05.317 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:05.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:05 smithi040 bash[24841]: cluster 2023-12-08T23:03:04.475936+0000 mgr.smithi040.evuiyl (mgr.14180) 813 : cluster [DBG] pgmap v560: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:05 smithi149 bash[28710]: cluster 2023-12-08T23:03:04.475936+0000 mgr.smithi040.evuiyl (mgr.14180) 813 : cluster [DBG] pgmap v560: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:06.319 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:06.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:06 smithi040 bash[24841]: audit 2023-12-08T23:03:04.574415+0000 mgr.smithi040.evuiyl (mgr.14180) 814 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:06 smithi149 bash[28710]: audit 2023-12-08T23:03:04.574415+0000 mgr.smithi040.evuiyl (mgr.14180) 814 : audit [DBG] from='client.15060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:07.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:07 smithi040 bash[24841]: cluster 2023-12-08T23:03:06.477149+0000 mgr.smithi040.evuiyl (mgr.14180) 815 : cluster [DBG] pgmap v561: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:07 smithi149 bash[28710]: cluster 2023-12-08T23:03:06.477149+0000 mgr.smithi040.evuiyl (mgr.14180) 815 : cluster [DBG] pgmap v561: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:08.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:08 smithi040 bash[24841]: cluster 2023-12-08T23:03:08.478305+0000 mgr.smithi040.evuiyl (mgr.14180) 816 : cluster [DBG] pgmap v562: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:09.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:08 smithi149 bash[28710]: cluster 2023-12-08T23:03:08.478305+0000 mgr.smithi040.evuiyl (mgr.14180) 816 : cluster [DBG] pgmap v562: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:09.657 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:09.658 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:10.441 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:11.442 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:11 smithi040 bash[24841]: audit 2023-12-08T23:03:09.644423+0000 mgr.smithi040.evuiyl (mgr.14180) 817 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:11 smithi040 bash[24841]: cluster 2023-12-08T23:03:10.479489+0000 mgr.smithi040.evuiyl (mgr.14180) 818 : cluster [DBG] pgmap v563: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:11.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:11 smithi149 bash[28710]: audit 2023-12-08T23:03:09.644423+0000 mgr.smithi040.evuiyl (mgr.14180) 817 : audit [DBG] from='client.15064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:11.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:11 smithi149 bash[28710]: cluster 2023-12-08T23:03:10.479489+0000 mgr.smithi040.evuiyl (mgr.14180) 818 : cluster [DBG] pgmap v563: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:13 smithi040 bash[24841]: cluster 2023-12-08T23:03:12.480665+0000 mgr.smithi040.evuiyl (mgr.14180) 819 : cluster [DBG] pgmap v564: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:13 smithi149 bash[28710]: cluster 2023-12-08T23:03:12.480665+0000 mgr.smithi040.evuiyl (mgr.14180) 819 : cluster [DBG] pgmap v564: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:14.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:14 smithi040 bash[24841]: audit 2023-12-08T23:03:14.449997+0000 mon.smithi040 (mon.0) 872 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:03:14.657 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:14.658 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:01:06.003909Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jmzfir on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:14.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:14 smithi149 bash[28710]: audit 2023-12-08T23:03:14.449997+0000 mon.smithi040 (mon.0) 872 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:03:15.422 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: cluster 2023-12-08T23:03:14.481913+0000 mgr.smithi040.evuiyl (mgr.14180) 820 : cluster [DBG] pgmap v565: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: audit 2023-12-08T23:03:14.749653+0000 mon.smithi040 (mon.0) 873 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:03:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: audit 2023-12-08T23:03:14.751330+0000 mon.smithi040 (mon.0) 874 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:03:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: audit 2023-12-08T23:03:14.759085+0000 mon.smithi040 (mon.0) 875 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: audit 2023-12-08T23:03:14.766280+0000 mon.smithi040 (mon.0) 876 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:03:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:15 smithi040 bash[24841]: audit 2023-12-08T23:03:14.778743+0000 mon.smithi040 (mon.0) 877 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: cluster 2023-12-08T23:03:14.481913+0000 mgr.smithi040.evuiyl (mgr.14180) 820 : cluster [DBG] pgmap v565: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: audit 2023-12-08T23:03:14.749653+0000 mon.smithi040 (mon.0) 873 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:03:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: audit 2023-12-08T23:03:14.751330+0000 mon.smithi040 (mon.0) 874 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:03:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: audit 2023-12-08T23:03:14.759085+0000 mon.smithi040 (mon.0) 875 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: audit 2023-12-08T23:03:14.766280+0000 mon.smithi040 (mon.0) 876 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:03:15.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:15 smithi149 bash[28710]: audit 2023-12-08T23:03:14.778743+0000 mon.smithi040 (mon.0) 877 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:16.423 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:16 smithi040 bash[24841]: audit 2023-12-08T23:03:14.645030+0000 mgr.smithi040.evuiyl (mgr.14180) 821 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:16 smithi040 bash[24841]: cluster 2023-12-08T23:03:14.759906+0000 mgr.smithi040.evuiyl (mgr.14180) 822 : cluster [DBG] pgmap v566: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:16 smithi040 bash[24841]: cephadm 2023-12-08T23:03:14.782776+0000 mgr.smithi040.evuiyl (mgr.14180) 823 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.zupyfg on smithi149 2023-12-08T23:03:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:16 smithi040 bash[24841]: cluster 2023-12-08T23:03:15.756416+0000 mon.smithi040 (mon.0) 878 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:03:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:16 smithi040 bash[24841]: cluster 2023-12-08T23:03:15.756479+0000 mon.smithi040 (mon.0) 879 : cluster [INF] Cluster is now healthy 2023-12-08T23:03:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:16 smithi149 bash[28710]: audit 2023-12-08T23:03:14.645030+0000 mgr.smithi040.evuiyl (mgr.14180) 821 : audit [DBG] from='client.15068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:16 smithi149 bash[28710]: cluster 2023-12-08T23:03:14.759906+0000 mgr.smithi040.evuiyl (mgr.14180) 822 : cluster [DBG] pgmap v566: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:16 smithi149 bash[28710]: cephadm 2023-12-08T23:03:14.782776+0000 mgr.smithi040.evuiyl (mgr.14180) 823 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.zupyfg on smithi149 2023-12-08T23:03:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:16 smithi149 bash[28710]: cluster 2023-12-08T23:03:15.756416+0000 mon.smithi040 (mon.0) 878 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:03:16.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:16 smithi149 bash[28710]: cluster 2023-12-08T23:03:15.756479+0000 mon.smithi040 (mon.0) 879 : cluster [INF] Cluster is now healthy 2023-12-08T23:03:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:18 smithi149 bash[28710]: cluster 2023-12-08T23:03:16.760902+0000 mgr.smithi040.evuiyl (mgr.14180) 824 : cluster [DBG] pgmap v567: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:18.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:18 smithi149 bash[28710]: audit 2023-12-08T23:03:17.435482+0000 mon.smithi040 (mon.0) 880 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:18.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:18 smithi040 bash[24841]: cluster 2023-12-08T23:03:16.760902+0000 mgr.smithi040.evuiyl (mgr.14180) 824 : cluster [DBG] pgmap v567: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:18.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:18 smithi040 bash[24841]: audit 2023-12-08T23:03:17.435482+0000 mon.smithi040 (mon.0) 880 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:19.715 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:19.715 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:10.156633Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.vhdxvb on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-vhdxvb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.vhdxvb\nDeploy daemon haproxy.nfs.foo.smithi149.vhdxvb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.442359Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.zgmaqg on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-zgmaqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.zgmaqg\nDeploy daemon haproxy.nfs.foo.smithi040.zgmaqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:02:14.444665Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rpgzye on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:19.747 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:19 smithi040 bash[24841]: audit 2023-12-08T23:03:18.759862+0000 mon.smithi040 (mon.0) 881 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.zupyfg"}]: dispatch 2023-12-08T23:03:19.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:19 smithi149 bash[28710]: audit 2023-12-08T23:03:18.759862+0000 mon.smithi040 (mon.0) 881 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.zupyfg"}]: dispatch 2023-12-08T23:03:20.500 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:20.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: cephadm 2023-12-08T23:03:18.758628+0000 mgr.smithi040.evuiyl (mgr.14180) 825 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:03:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: cephadm 2023-12-08T23:03:18.759163+0000 mgr.smithi040.evuiyl (mgr.14180) 826 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: cephadm 2023-12-08T23:03:18.761434+0000 mgr.smithi040.evuiyl (mgr.14180) 827 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: cluster 2023-12-08T23:03:18.761837+0000 mgr.smithi040.evuiyl (mgr.14180) 828 : cluster [DBG] pgmap v568: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:20.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:20 smithi040 bash[24841]: cephadm 2023-12-08T23:03:18.765248+0000 mgr.smithi040.evuiyl (mgr.14180) 829 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ldeyve on smithi040 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: cephadm 2023-12-08T23:03:18.758628+0000 mgr.smithi040.evuiyl (mgr.14180) 825 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: cephadm 2023-12-08T23:03:18.759163+0000 mgr.smithi040.evuiyl (mgr.14180) 826 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: cephadm 2023-12-08T23:03:18.761434+0000 mgr.smithi040.evuiyl (mgr.14180) 827 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.zupyfg ... 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:20.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: cluster 2023-12-08T23:03:18.761837+0000 mgr.smithi040.evuiyl (mgr.14180) 828 : cluster [DBG] pgmap v568: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:20.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:20 smithi149 bash[28710]: cephadm 2023-12-08T23:03:18.765248+0000 mgr.smithi040.evuiyl (mgr.14180) 829 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ldeyve on smithi040 2023-12-08T23:03:21.501 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:21.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:21 smithi149 bash[28710]: audit 2023-12-08T23:03:19.702565+0000 mgr.smithi040.evuiyl (mgr.14180) 830 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:21.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:21 smithi040 bash[24841]: audit 2023-12-08T23:03:19.702565+0000 mgr.smithi040.evuiyl (mgr.14180) 830 : audit [DBG] from='client.15072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:22.718 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:22 smithi040 bash[24841]: cluster 2023-12-08T23:03:20.762936+0000 mgr.smithi040.evuiyl (mgr.14180) 831 : cluster [DBG] pgmap v569: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:22 smithi149 bash[28710]: cluster 2023-12-08T23:03:20.762936+0000 mgr.smithi040.evuiyl (mgr.14180) 831 : cluster [DBG] pgmap v569: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:03:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:23 smithi040 bash[24841]: audit 2023-12-08T23:03:22.710384+0000 mon.smithi040 (mon.0) 882 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ldeyve"}]: dispatch 2023-12-08T23:03:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:23 smithi149 bash[28710]: audit 2023-12-08T23:03:22.710384+0000 mon.smithi040 (mon.0) 882 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ldeyve"}]: dispatch 2023-12-08T23:03:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cephadm 2023-12-08T23:03:22.709476+0000 mgr.smithi040.evuiyl (mgr.14180) 832 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cephadm 2023-12-08T23:03:22.709785+0000 mgr.smithi040.evuiyl (mgr.14180) 833 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cephadm 2023-12-08T23:03:22.711600+0000 mgr.smithi040.evuiyl (mgr.14180) 834 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cephadm 2023-12-08T23:03:22.715061+0000 mgr.smithi040.evuiyl (mgr.14180) 835 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:03:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cephadm 2023-12-08T23:03:22.718163+0000 mgr.smithi040.evuiyl (mgr.14180) 836 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:03:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cluster 2023-12-08T23:03:22.719516+0000 mgr.smithi040.evuiyl (mgr.14180) 837 : cluster [DBG] pgmap v570: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:03:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:24 smithi040 bash[24841]: cluster 2023-12-08T23:03:23.461037+0000 mon.smithi040 (mon.0) 883 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:03:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cephadm 2023-12-08T23:03:22.709476+0000 mgr.smithi040.evuiyl (mgr.14180) 832 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:03:24.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cephadm 2023-12-08T23:03:22.709785+0000 mgr.smithi040.evuiyl (mgr.14180) 833 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cephadm 2023-12-08T23:03:22.711600+0000 mgr.smithi040.evuiyl (mgr.14180) 834 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ldeyve ... 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cephadm 2023-12-08T23:03:22.715061+0000 mgr.smithi040.evuiyl (mgr.14180) 835 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cephadm 2023-12-08T23:03:22.718163+0000 mgr.smithi040.evuiyl (mgr.14180) 836 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:03:24.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cluster 2023-12-08T23:03:22.719516+0000 mgr.smithi040.evuiyl (mgr.14180) 837 : cluster [DBG] pgmap v570: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:03:24.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:24 smithi149 bash[28710]: cluster 2023-12-08T23:03:23.461037+0000 mon.smithi040 (mon.0) 883 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:03:24.890 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:24.890 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:25.740 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:26.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:25 smithi040 bash[24841]: cluster 2023-12-08T23:03:24.720621+0000 mgr.smithi040.evuiyl (mgr.14180) 838 : cluster [DBG] pgmap v571: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:03:26.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:25 smithi040 bash[24841]: audit 2023-12-08T23:03:24.851355+0000 mon.smithi040 (mon.0) 884 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:26.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:25 smithi040 bash[24841]: audit 2023-12-08T23:03:24.873222+0000 mgr.smithi040.evuiyl (mgr.14180) 839 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:26.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:25 smithi149 bash[28710]: cluster 2023-12-08T23:03:24.720621+0000 mgr.smithi040.evuiyl (mgr.14180) 838 : cluster [DBG] pgmap v571: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:03:26.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:25 smithi149 bash[28710]: audit 2023-12-08T23:03:24.851355+0000 mon.smithi040 (mon.0) 884 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:26.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:25 smithi149 bash[28710]: audit 2023-12-08T23:03:24.873222+0000 mgr.smithi040.evuiyl (mgr.14180) 839 : audit [DBG] from='client.15076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:26.741 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:28.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:28 smithi040 bash[24841]: cluster 2023-12-08T23:03:26.721876+0000 mgr.smithi040.evuiyl (mgr.14180) 840 : cluster [DBG] pgmap v572: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:28.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:28 smithi149 bash[28710]: cluster 2023-12-08T23:03:26.721876+0000 mgr.smithi040.evuiyl (mgr.14180) 840 : cluster [DBG] pgmap v572: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:29.949 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:29.950 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:30.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:30 smithi040 bash[24841]: cluster 2023-12-08T23:03:28.723007+0000 mgr.smithi040.evuiyl (mgr.14180) 841 : cluster [DBG] pgmap v573: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:30.728 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:30.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:30 smithi149 bash[28710]: cluster 2023-12-08T23:03:28.723007+0000 mgr.smithi040.evuiyl (mgr.14180) 841 : cluster [DBG] pgmap v573: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:31.729 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:31.742 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:31 smithi040 bash[24841]: audit 2023-12-08T23:03:29.937242+0000 mgr.smithi040.evuiyl (mgr.14180) 842 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:31.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:31 smithi149 bash[28710]: audit 2023-12-08T23:03:29.937242+0000 mgr.smithi040.evuiyl (mgr.14180) 842 : audit [DBG] from='client.15080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:32 smithi040 bash[24841]: cluster 2023-12-08T23:03:30.724243+0000 mgr.smithi040.evuiyl (mgr.14180) 843 : cluster [DBG] pgmap v574: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 342 B/s rd, 0 op/s 2023-12-08T23:03:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:32 smithi149 bash[28710]: cluster 2023-12-08T23:03:30.724243+0000 mgr.smithi040.evuiyl (mgr.14180) 843 : cluster [DBG] pgmap v574: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 342 B/s rd, 0 op/s 2023-12-08T23:03:33.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:33 smithi040 bash[24841]: audit 2023-12-08T23:03:32.440689+0000 mon.smithi040 (mon.0) 885 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:33.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:33 smithi149 bash[28710]: audit 2023-12-08T23:03:32.440689+0000 mon.smithi040 (mon.0) 885 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:03:34.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:34 smithi040 bash[24841]: cluster 2023-12-08T23:03:32.725415+0000 mgr.smithi040.evuiyl (mgr.14180) 844 : cluster [DBG] pgmap v575: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:34.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:34 smithi149 bash[28710]: cluster 2023-12-08T23:03:32.725415+0000 mgr.smithi040.evuiyl (mgr.14180) 844 : cluster [DBG] pgmap v575: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2023-12-08T23:03:34.939 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:34.940 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:35.770 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:36 smithi040 bash[24841]: cluster 2023-12-08T23:03:34.726669+0000 mgr.smithi040.evuiyl (mgr.14180) 845 : cluster [DBG] pgmap v576: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:36 smithi040 bash[24841]: audit 2023-12-08T23:03:34.922715+0000 mgr.smithi040.evuiyl (mgr.14180) 846 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:36.771 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:36.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:36 smithi149 bash[28710]: cluster 2023-12-08T23:03:34.726669+0000 mgr.smithi040.evuiyl (mgr.14180) 845 : cluster [DBG] pgmap v576: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:36.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:36 smithi149 bash[28710]: audit 2023-12-08T23:03:34.922715+0000 mgr.smithi040.evuiyl (mgr.14180) 846 : audit [DBG] from='client.15084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:38 smithi040 bash[24841]: cluster 2023-12-08T23:03:36.727917+0000 mgr.smithi040.evuiyl (mgr.14180) 847 : cluster [DBG] pgmap v577: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:38.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:38 smithi149 bash[28710]: cluster 2023-12-08T23:03:36.727917+0000 mgr.smithi040.evuiyl (mgr.14180) 847 : cluster [DBG] pgmap v577: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:40.159 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:40.159 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:40.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:40 smithi040 bash[24841]: cluster 2023-12-08T23:03:38.729157+0000 mgr.smithi040.evuiyl (mgr.14180) 848 : cluster [DBG] pgmap v578: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:40.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:40 smithi149 bash[28710]: cluster 2023-12-08T23:03:38.729157+0000 mgr.smithi040.evuiyl (mgr.14180) 848 : cluster [DBG] pgmap v578: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:40.979 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:41.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:41 smithi149 bash[28710]: audit 2023-12-08T23:03:40.141104+0000 mgr.smithi040.evuiyl (mgr.14180) 849 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:41.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:41 smithi040 bash[24841]: audit 2023-12-08T23:03:40.141104+0000 mgr.smithi040.evuiyl (mgr.14180) 849 : audit [DBG] from='client.15088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:41.981 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:42.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:42 smithi040 bash[24841]: cluster 2023-12-08T23:03:40.730325+0000 mgr.smithi040.evuiyl (mgr.14180) 850 : cluster [DBG] pgmap v579: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:42 smithi149 bash[28710]: cluster 2023-12-08T23:03:40.730325+0000 mgr.smithi040.evuiyl (mgr.14180) 850 : cluster [DBG] pgmap v579: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:44.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:44 smithi040 bash[24841]: cluster 2023-12-08T23:03:42.731489+0000 mgr.smithi040.evuiyl (mgr.14180) 851 : cluster [DBG] pgmap v580: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:44.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:44 smithi149 bash[28710]: cluster 2023-12-08T23:03:42.731489+0000 mgr.smithi040.evuiyl (mgr.14180) 851 : cluster [DBG] pgmap v580: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:45.335 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:45.335 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:46.145 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:46 smithi040 bash[24841]: cluster 2023-12-08T23:03:44.732804+0000 mgr.smithi040.evuiyl (mgr.14180) 852 : cluster [DBG] pgmap v581: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:46 smithi040 bash[24841]: audit 2023-12-08T23:03:45.315367+0000 mgr.smithi040.evuiyl (mgr.14180) 853 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:46 smithi149 bash[28710]: cluster 2023-12-08T23:03:44.732804+0000 mgr.smithi040.evuiyl (mgr.14180) 852 : cluster [DBG] pgmap v581: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:46 smithi149 bash[28710]: audit 2023-12-08T23:03:45.315367+0000 mgr.smithi040.evuiyl (mgr.14180) 853 : audit [DBG] from='client.15092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:47.145 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:48.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:48 smithi040 bash[24841]: cluster 2023-12-08T23:03:46.733998+0000 mgr.smithi040.evuiyl (mgr.14180) 854 : cluster [DBG] pgmap v582: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:48 smithi149 bash[28710]: cluster 2023-12-08T23:03:46.733998+0000 mgr.smithi040.evuiyl (mgr.14180) 854 : cluster [DBG] pgmap v582: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:50.426 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:50.426 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:50 smithi040 bash[24841]: cluster 2023-12-08T23:03:48.735213+0000 mgr.smithi040.evuiyl (mgr.14180) 855 : cluster [DBG] pgmap v583: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:50.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:50 smithi149 bash[28710]: cluster 2023-12-08T23:03:48.735213+0000 mgr.smithi040.evuiyl (mgr.14180) 855 : cluster [DBG] pgmap v583: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:51.219 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:51.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:51 smithi149 bash[28710]: audit 2023-12-08T23:03:50.408943+0000 mgr.smithi040.evuiyl (mgr.14180) 856 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:51.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:51 smithi040 bash[24841]: audit 2023-12-08T23:03:50.408943+0000 mgr.smithi040.evuiyl (mgr.14180) 856 : audit [DBG] from='client.15096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:52.221 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:52 smithi149 bash[28710]: cluster 2023-12-08T23:03:50.736393+0000 mgr.smithi040.evuiyl (mgr.14180) 857 : cluster [DBG] pgmap v584: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:53.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:52 smithi040 bash[24841]: cluster 2023-12-08T23:03:50.736393+0000 mgr.smithi040.evuiyl (mgr.14180) 857 : cluster [DBG] pgmap v584: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:03:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:54 smithi149 bash[28710]: cluster 2023-12-08T23:03:52.737530+0000 mgr.smithi040.evuiyl (mgr.14180) 858 : cluster [DBG] pgmap v585: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:54.933 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:54 smithi040 bash[24841]: cluster 2023-12-08T23:03:52.737530+0000 mgr.smithi040.evuiyl (mgr.14180) 858 : cluster [DBG] pgmap v585: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:55.346 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:03:55.347 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:03:56.104 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:03:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:56 smithi149 bash[28710]: cluster 2023-12-08T23:03:54.738905+0000 mgr.smithi040.evuiyl (mgr.14180) 859 : cluster [DBG] pgmap v586: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:56 smithi149 bash[28710]: audit 2023-12-08T23:03:55.326753+0000 mgr.smithi040.evuiyl (mgr.14180) 860 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:57.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:56 smithi040 bash[24841]: cluster 2023-12-08T23:03:54.738905+0000 mgr.smithi040.evuiyl (mgr.14180) 859 : cluster [DBG] pgmap v586: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:57.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:56 smithi040 bash[24841]: audit 2023-12-08T23:03:55.326753+0000 mgr.smithi040.evuiyl (mgr.14180) 860 : audit [DBG] from='client.15100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:03:57.105 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:03:58.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:03:58 smithi149 bash[28710]: cluster 2023-12-08T23:03:56.740089+0000 mgr.smithi040.evuiyl (mgr.14180) 861 : cluster [DBG] pgmap v587: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:03:59.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:03:58 smithi040 bash[24841]: cluster 2023-12-08T23:03:56.740089+0000 mgr.smithi040.evuiyl (mgr.14180) 861 : cluster [DBG] pgmap v587: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:00.363 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:00.364 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:00.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:00 smithi040 bash[24841]: cluster 2023-12-08T23:03:58.741292+0000 mgr.smithi040.evuiyl (mgr.14180) 862 : cluster [DBG] pgmap v588: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:00 smithi149 bash[28710]: cluster 2023-12-08T23:03:58.741292+0000 mgr.smithi040.evuiyl (mgr.14180) 862 : cluster [DBG] pgmap v588: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:01.090 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:01.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:01 smithi149 bash[28710]: audit 2023-12-08T23:04:00.344885+0000 mgr.smithi040.evuiyl (mgr.14180) 863 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:01.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:01 smithi040 bash[24841]: audit 2023-12-08T23:04:00.344885+0000 mgr.smithi040.evuiyl (mgr.14180) 863 : audit [DBG] from='client.15104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:02.090 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:02 smithi149 bash[28710]: cluster 2023-12-08T23:04:00.742486+0000 mgr.smithi040.evuiyl (mgr.14180) 864 : cluster [DBG] pgmap v589: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:03.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:02 smithi040 bash[24841]: cluster 2023-12-08T23:04:00.742486+0000 mgr.smithi040.evuiyl (mgr.14180) 864 : cluster [DBG] pgmap v589: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:04.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:04 smithi149 bash[28710]: cluster 2023-12-08T23:04:02.743263+0000 mgr.smithi040.evuiyl (mgr.14180) 865 : cluster [DBG] pgmap v590: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:04.933 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:04 smithi040 bash[24841]: cluster 2023-12-08T23:04:02.743263+0000 mgr.smithi040.evuiyl (mgr.14180) 865 : cluster [DBG] pgmap v590: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:05.365 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:05.365 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:06.092 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:06 smithi040 bash[24841]: cluster 2023-12-08T23:04:04.744522+0000 mgr.smithi040.evuiyl (mgr.14180) 866 : cluster [DBG] pgmap v591: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:06 smithi040 bash[24841]: audit 2023-12-08T23:04:05.347957+0000 mgr.smithi040.evuiyl (mgr.14180) 867 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:07.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:06 smithi149 bash[28710]: cluster 2023-12-08T23:04:04.744522+0000 mgr.smithi040.evuiyl (mgr.14180) 866 : cluster [DBG] pgmap v591: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:07.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:06 smithi149 bash[28710]: audit 2023-12-08T23:04:05.347957+0000 mgr.smithi040.evuiyl (mgr.14180) 867 : audit [DBG] from='client.15108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:07.093 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:08.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:08 smithi040 bash[24841]: cluster 2023-12-08T23:04:06.745863+0000 mgr.smithi040.evuiyl (mgr.14180) 868 : cluster [DBG] pgmap v592: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:08 smithi149 bash[28710]: cluster 2023-12-08T23:04:06.745863+0000 mgr.smithi040.evuiyl (mgr.14180) 868 : cluster [DBG] pgmap v592: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:10.288 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:10.288 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:10.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:10 smithi040 bash[24841]: cluster 2023-12-08T23:04:08.746758+0000 mgr.smithi040.evuiyl (mgr.14180) 869 : cluster [DBG] pgmap v593: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:10.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:10 smithi149 bash[28710]: cluster 2023-12-08T23:04:08.746758+0000 mgr.smithi040.evuiyl (mgr.14180) 869 : cluster [DBG] pgmap v593: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:11.020 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:11.744 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:11 smithi149 bash[28710]: audit 2023-12-08T23:04:10.271536+0000 mgr.smithi040.evuiyl (mgr.14180) 870 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:11.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:11 smithi040 bash[24841]: audit 2023-12-08T23:04:10.271536+0000 mgr.smithi040.evuiyl (mgr.14180) 870 : audit [DBG] from='client.15112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:12.022 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:12.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:12 smithi040 bash[24841]: cluster 2023-12-08T23:04:10.748063+0000 mgr.smithi040.evuiyl (mgr.14180) 871 : cluster [DBG] pgmap v594: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:12.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:12 smithi149 bash[28710]: cluster 2023-12-08T23:04:10.748063+0000 mgr.smithi040.evuiyl (mgr.14180) 871 : cluster [DBG] pgmap v594: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:14.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:14 smithi040 bash[24841]: cluster 2023-12-08T23:04:12.748901+0000 mgr.smithi040.evuiyl (mgr.14180) 872 : cluster [DBG] pgmap v595: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:14.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:14 smithi149 bash[28710]: cluster 2023-12-08T23:04:12.748901+0000 mgr.smithi040.evuiyl (mgr.14180) 872 : cluster [DBG] pgmap v595: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:15.236 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:15.236 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:16.057 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:16 smithi040 bash[24841]: cluster 2023-12-08T23:04:14.750203+0000 mgr.smithi040.evuiyl (mgr.14180) 873 : cluster [DBG] pgmap v596: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:16 smithi040 bash[24841]: audit 2023-12-08T23:04:15.215464+0000 mgr.smithi040.evuiyl (mgr.14180) 874 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:16 smithi149 bash[28710]: cluster 2023-12-08T23:04:14.750203+0000 mgr.smithi040.evuiyl (mgr.14180) 873 : cluster [DBG] pgmap v596: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:16.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:16 smithi149 bash[28710]: audit 2023-12-08T23:04:15.215464+0000 mgr.smithi040.evuiyl (mgr.14180) 874 : audit [DBG] from='client.15116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:17.058 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:18.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:18 smithi040 bash[24841]: cluster 2023-12-08T23:04:16.751551+0000 mgr.smithi040.evuiyl (mgr.14180) 875 : cluster [DBG] pgmap v597: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:18 smithi149 bash[28710]: cluster 2023-12-08T23:04:16.751551+0000 mgr.smithi040.evuiyl (mgr.14180) 875 : cluster [DBG] pgmap v597: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:20.455 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:20.455 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:20.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:20 smithi040 bash[24841]: cluster 2023-12-08T23:04:18.752955+0000 mgr.smithi040.evuiyl (mgr.14180) 876 : cluster [DBG] pgmap v598: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:20.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:20 smithi149 bash[28710]: cluster 2023-12-08T23:04:18.752955+0000 mgr.smithi040.evuiyl (mgr.14180) 876 : cluster [DBG] pgmap v598: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:21.226 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:21.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:21 smithi040 bash[24841]: audit 2023-12-08T23:04:20.436239+0000 mgr.smithi040.evuiyl (mgr.14180) 877 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:21.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:21 smithi149 bash[28710]: audit 2023-12-08T23:04:20.436239+0000 mgr.smithi040.evuiyl (mgr.14180) 877 : audit [DBG] from='client.15120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:22.227 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:22.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:22 smithi040 bash[24841]: cluster 2023-12-08T23:04:20.754199+0000 mgr.smithi040.evuiyl (mgr.14180) 878 : cluster [DBG] pgmap v599: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:22 smithi149 bash[28710]: cluster 2023-12-08T23:04:20.754199+0000 mgr.smithi040.evuiyl (mgr.14180) 878 : cluster [DBG] pgmap v599: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:23.677 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:22.723578+0000 mon.smithi040 (mon.0) 886 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:04:23.677 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:23.029827+0000 mon.smithi040 (mon.0) 887 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:04:23.677 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:23.031038+0000 mon.smithi040 (mon.0) 888 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:04:23.677 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:23.037460+0000 mon.smithi040 (mon.0) 889 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:23.678 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:23.045174+0000 mon.smithi040 (mon.0) 890 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:04:23.678 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:23 smithi040 bash[24841]: audit 2023-12-08T23:04:23.056285+0000 mon.smithi040 (mon.0) 891 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:22.723578+0000 mon.smithi040 (mon.0) 886 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:23.029827+0000 mon.smithi040 (mon.0) 887 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:23.031038+0000 mon.smithi040 (mon.0) 888 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:23.037460+0000 mon.smithi040 (mon.0) 889 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:23.045174+0000 mon.smithi040 (mon.0) 890 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:04:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:23 smithi149 bash[28710]: audit 2023-12-08T23:04:23.056285+0000 mon.smithi040 (mon.0) 891 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:24 smithi040 bash[24841]: cluster 2023-12-08T23:04:22.754882+0000 mgr.smithi040.evuiyl (mgr.14180) 879 : cluster [DBG] pgmap v600: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:24 smithi040 bash[24841]: cluster 2023-12-08T23:04:23.038124+0000 mgr.smithi040.evuiyl (mgr.14180) 880 : cluster [DBG] pgmap v601: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:24 smithi040 bash[24841]: cephadm 2023-12-08T23:04:23.060618+0000 mgr.smithi040.evuiyl (mgr.14180) 881 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.tglebf on smithi149 2023-12-08T23:04:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:24 smithi040 bash[24841]: cluster 2023-12-08T23:04:23.492943+0000 mon.smithi040 (mon.0) 892 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:04:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:24 smithi040 bash[24841]: cluster 2023-12-08T23:04:23.493012+0000 mon.smithi040 (mon.0) 893 : cluster [INF] Cluster is now healthy 2023-12-08T23:04:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:24 smithi149 bash[28710]: cluster 2023-12-08T23:04:22.754882+0000 mgr.smithi040.evuiyl (mgr.14180) 879 : cluster [DBG] pgmap v600: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:24 smithi149 bash[28710]: cluster 2023-12-08T23:04:23.038124+0000 mgr.smithi040.evuiyl (mgr.14180) 880 : cluster [DBG] pgmap v601: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:24 smithi149 bash[28710]: cephadm 2023-12-08T23:04:23.060618+0000 mgr.smithi040.evuiyl (mgr.14180) 881 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.tglebf on smithi149 2023-12-08T23:04:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:24 smithi149 bash[28710]: cluster 2023-12-08T23:04:23.492943+0000 mon.smithi040 (mon.0) 892 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:04:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:24 smithi149 bash[28710]: cluster 2023-12-08T23:04:23.493012+0000 mon.smithi040 (mon.0) 893 : cluster [INF] Cluster is now healthy 2023-12-08T23:04:25.501 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:25.501 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:02:14.446323Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.haqfxx on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:26.283 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:26.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:26 smithi040 bash[24841]: cluster 2023-12-08T23:04:25.039208+0000 mgr.smithi040.evuiyl (mgr.14180) 882 : cluster [DBG] pgmap v602: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:26.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:26 smithi040 bash[24841]: audit 2023-12-08T23:04:25.483413+0000 mgr.smithi040.evuiyl (mgr.14180) 883 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:26 smithi149 bash[28710]: cluster 2023-12-08T23:04:25.039208+0000 mgr.smithi040.evuiyl (mgr.14180) 882 : cluster [DBG] pgmap v602: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:26 smithi149 bash[28710]: audit 2023-12-08T23:04:25.483413+0000 mgr.smithi040.evuiyl (mgr.14180) 883 : audit [DBG] from='client.15124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:27.284 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:27.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:27 smithi040 bash[24841]: audit 2023-12-08T23:04:26.884566+0000 mon.smithi040 (mon.0) 894 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.tglebf"}]: dispatch 2023-12-08T23:04:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:27 smithi149 bash[28710]: audit 2023-12-08T23:04:26.884566+0000 mon.smithi040 (mon.0) 894 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.tglebf"}]: dispatch 2023-12-08T23:04:28.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: cephadm 2023-12-08T23:04:26.883487+0000 mgr.smithi040.evuiyl (mgr.14180) 884 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: cephadm 2023-12-08T23:04:26.883934+0000 mgr.smithi040.evuiyl (mgr.14180) 885 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: cephadm 2023-12-08T23:04:26.886128+0000 mgr.smithi040.evuiyl (mgr.14180) 886 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: cephadm 2023-12-08T23:04:26.891130+0000 mgr.smithi040.evuiyl (mgr.14180) 887 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.atzmfa on smithi040 2023-12-08T23:04:28.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:28 smithi040 bash[24841]: cluster 2023-12-08T23:04:27.040157+0000 mgr.smithi040.evuiyl (mgr.14180) 888 : cluster [DBG] pgmap v603: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: cephadm 2023-12-08T23:04:26.883487+0000 mgr.smithi040.evuiyl (mgr.14180) 884 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: cephadm 2023-12-08T23:04:26.883934+0000 mgr.smithi040.evuiyl (mgr.14180) 885 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: cephadm 2023-12-08T23:04:26.886128+0000 mgr.smithi040.evuiyl (mgr.14180) 886 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.tglebf ... 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:28.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: cephadm 2023-12-08T23:04:26.891130+0000 mgr.smithi040.evuiyl (mgr.14180) 887 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.atzmfa on smithi040 2023-12-08T23:04:28.821 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:28 smithi149 bash[28710]: cluster 2023-12-08T23:04:27.040157+0000 mgr.smithi040.evuiyl (mgr.14180) 888 : cluster [DBG] pgmap v603: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:30.604 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:30.604 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:18.761227Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.zupyfg on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-zupyfg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.zupyfg\nDeploy daemon haproxy.nfs.foo.smithi149.zupyfg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.711483Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ldeyve on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ldeyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ldeyve\nDeploy daemon haproxy.nfs.foo.smithi040.ldeyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:03:22.714879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hpgwto on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:30.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:30 smithi149 bash[28710]: cluster 2023-12-08T23:04:29.041082+0000 mgr.smithi040.evuiyl (mgr.14180) 889 : cluster [DBG] pgmap v604: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:30.818 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:30 smithi040 bash[24841]: cluster 2023-12-08T23:04:29.041082+0000 mgr.smithi040.evuiyl (mgr.14180) 889 : cluster [DBG] pgmap v604: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:04:31.372 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:31.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:31 smithi040 bash[24841]: audit 2023-12-08T23:04:30.674798+0000 mon.smithi040 (mon.0) 895 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.atzmfa"}]: dispatch 2023-12-08T23:04:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:31 smithi149 bash[28710]: audit 2023-12-08T23:04:30.674798+0000 mon.smithi040 (mon.0) 895 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.atzmfa"}]: dispatch 2023-12-08T23:04:32.373 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: audit 2023-12-08T23:04:30.586768+0000 mgr.smithi040.evuiyl (mgr.14180) 890 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cephadm 2023-12-08T23:04:30.673991+0000 mgr.smithi040.evuiyl (mgr.14180) 891 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cephadm 2023-12-08T23:04:30.674254+0000 mgr.smithi040.evuiyl (mgr.14180) 892 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cephadm 2023-12-08T23:04:30.675783+0000 mgr.smithi040.evuiyl (mgr.14180) 893 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cephadm 2023-12-08T23:04:30.677739+0000 mgr.smithi040.evuiyl (mgr.14180) 894 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cephadm 2023-12-08T23:04:30.679430+0000 mgr.smithi040.evuiyl (mgr.14180) 895 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cluster 2023-12-08T23:04:30.680663+0000 mgr.smithi040.evuiyl (mgr.14180) 896 : cluster [DBG] pgmap v605: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T23:04:32.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:32 smithi040 bash[24841]: cluster 2023-12-08T23:04:31.526269+0000 mon.smithi040 (mon.0) 896 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: audit 2023-12-08T23:04:30.586768+0000 mgr.smithi040.evuiyl (mgr.14180) 890 : audit [DBG] from='client.15128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cephadm 2023-12-08T23:04:30.673991+0000 mgr.smithi040.evuiyl (mgr.14180) 891 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cephadm 2023-12-08T23:04:30.674254+0000 mgr.smithi040.evuiyl (mgr.14180) 892 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cephadm 2023-12-08T23:04:30.675783+0000 mgr.smithi040.evuiyl (mgr.14180) 893 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.atzmfa ... 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:04:32.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cephadm 2023-12-08T23:04:30.677739+0000 mgr.smithi040.evuiyl (mgr.14180) 894 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:04:32.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cephadm 2023-12-08T23:04:30.679430+0000 mgr.smithi040.evuiyl (mgr.14180) 895 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:04:32.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cluster 2023-12-08T23:04:30.680663+0000 mgr.smithi040.evuiyl (mgr.14180) 896 : cluster [DBG] pgmap v605: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T23:04:32.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:32 smithi149 bash[28710]: cluster 2023-12-08T23:04:31.526269+0000 mon.smithi040 (mon.0) 896 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:04:34.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:34 smithi040 bash[24841]: cluster 2023-12-08T23:04:32.681452+0000 mgr.smithi040.evuiyl (mgr.14180) 897 : cluster [DBG] pgmap v606: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T23:04:34.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:34 smithi149 bash[28710]: cluster 2023-12-08T23:04:32.681452+0000 mgr.smithi040.evuiyl (mgr.14180) 897 : cluster [DBG] pgmap v606: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 206 B/s rd, 0 op/s 2023-12-08T23:04:35.628 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:35.629 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:36.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:35 smithi040 bash[24841]: cluster 2023-12-08T23:04:34.682747+0000 mgr.smithi040.evuiyl (mgr.14180) 898 : cluster [DBG] pgmap v607: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:36.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:35 smithi040 bash[24841]: audit 2023-12-08T23:04:34.902247+0000 mon.smithi040 (mon.0) 897 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:36.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:35 smithi149 bash[28710]: cluster 2023-12-08T23:04:34.682747+0000 mgr.smithi040.evuiyl (mgr.14180) 898 : cluster [DBG] pgmap v607: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:36.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:35 smithi149 bash[28710]: audit 2023-12-08T23:04:34.902247+0000 mon.smithi040 (mon.0) 897 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:04:36.379 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:37.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:36 smithi040 bash[24841]: audit 2023-12-08T23:04:35.615725+0000 mgr.smithi040.evuiyl (mgr.14180) 899 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:37.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:36 smithi149 bash[28710]: audit 2023-12-08T23:04:35.615725+0000 mgr.smithi040.evuiyl (mgr.14180) 899 : audit [DBG] from='client.15132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:37.380 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:38 smithi040 bash[24841]: cluster 2023-12-08T23:04:36.683814+0000 mgr.smithi040.evuiyl (mgr.14180) 900 : cluster [DBG] pgmap v608: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:38.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:38 smithi149 bash[28710]: cluster 2023-12-08T23:04:36.683814+0000 mgr.smithi040.evuiyl (mgr.14180) 900 : cluster [DBG] pgmap v608: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:40.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:40 smithi040 bash[24841]: cluster 2023-12-08T23:04:38.684583+0000 mgr.smithi040.evuiyl (mgr.14180) 901 : cluster [DBG] pgmap v609: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:40.683 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:40.683 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:40.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:40 smithi149 bash[28710]: cluster 2023-12-08T23:04:38.684583+0000 mgr.smithi040.evuiyl (mgr.14180) 901 : cluster [DBG] pgmap v609: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2023-12-08T23:04:41.464 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:42.465 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:42.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:42 smithi040 bash[24841]: audit 2023-12-08T23:04:40.664999+0000 mgr.smithi040.evuiyl (mgr.14180) 902 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:42.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:42 smithi040 bash[24841]: cluster 2023-12-08T23:04:40.685378+0000 mgr.smithi040.evuiyl (mgr.14180) 903 : cluster [DBG] pgmap v610: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 351 B/s rd, 0 op/s 2023-12-08T23:04:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:42 smithi149 bash[28710]: audit 2023-12-08T23:04:40.664999+0000 mgr.smithi040.evuiyl (mgr.14180) 902 : audit [DBG] from='client.15136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:42 smithi149 bash[28710]: cluster 2023-12-08T23:04:40.685378+0000 mgr.smithi040.evuiyl (mgr.14180) 903 : cluster [DBG] pgmap v610: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 351 B/s rd, 0 op/s 2023-12-08T23:04:44.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:44 smithi040 bash[24841]: cluster 2023-12-08T23:04:42.686454+0000 mgr.smithi040.evuiyl (mgr.14180) 904 : cluster [DBG] pgmap v611: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:44.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:44 smithi149 bash[28710]: cluster 2023-12-08T23:04:42.686454+0000 mgr.smithi040.evuiyl (mgr.14180) 904 : cluster [DBG] pgmap v611: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:45.924 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:45.957 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:46.726 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:46.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:46 smithi040 bash[24841]: cluster 2023-12-08T23:04:44.687333+0000 mgr.smithi040.evuiyl (mgr.14180) 905 : cluster [DBG] pgmap v612: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:46.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:46 smithi149 bash[28710]: cluster 2023-12-08T23:04:44.687333+0000 mgr.smithi040.evuiyl (mgr.14180) 905 : cluster [DBG] pgmap v612: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:47.727 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:47.741 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:47 smithi040 bash[24841]: audit 2023-12-08T23:04:45.905784+0000 mgr.smithi040.evuiyl (mgr.14180) 906 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:47.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:47 smithi149 bash[28710]: audit 2023-12-08T23:04:45.905784+0000 mgr.smithi040.evuiyl (mgr.14180) 906 : audit [DBG] from='client.15140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:48.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:48 smithi040 bash[24841]: cluster 2023-12-08T23:04:46.687970+0000 mgr.smithi040.evuiyl (mgr.14180) 907 : cluster [DBG] pgmap v613: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:48 smithi149 bash[28710]: cluster 2023-12-08T23:04:46.687970+0000 mgr.smithi040.evuiyl (mgr.14180) 907 : cluster [DBG] pgmap v613: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:50 smithi040 bash[24841]: cluster 2023-12-08T23:04:48.688706+0000 mgr.smithi040.evuiyl (mgr.14180) 908 : cluster [DBG] pgmap v614: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:50.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:50 smithi149 bash[28710]: cluster 2023-12-08T23:04:48.688706+0000 mgr.smithi040.evuiyl (mgr.14180) 908 : cluster [DBG] pgmap v614: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:50.994 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:50.994 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:51.779 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:52.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:52 smithi040 bash[24841]: cluster 2023-12-08T23:04:50.689816+0000 mgr.smithi040.evuiyl (mgr.14180) 909 : cluster [DBG] pgmap v615: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:52.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:52 smithi040 bash[24841]: audit 2023-12-08T23:04:50.975451+0000 mgr.smithi040.evuiyl (mgr.14180) 910 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:52.780 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:52 smithi149 bash[28710]: cluster 2023-12-08T23:04:50.689816+0000 mgr.smithi040.evuiyl (mgr.14180) 909 : cluster [DBG] pgmap v615: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:04:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:52 smithi149 bash[28710]: audit 2023-12-08T23:04:50.975451+0000 mgr.smithi040.evuiyl (mgr.14180) 910 : audit [DBG] from='client.15144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:54.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:54 smithi040 bash[24841]: cluster 2023-12-08T23:04:52.691176+0000 mgr.smithi040.evuiyl (mgr.14180) 911 : cluster [DBG] pgmap v616: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:54 smithi149 bash[28710]: cluster 2023-12-08T23:04:52.691176+0000 mgr.smithi040.evuiyl (mgr.14180) 911 : cluster [DBG] pgmap v616: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:55.991 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:04:55.991 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:04:56.719 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:04:56.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:56 smithi040 bash[24841]: cluster 2023-12-08T23:04:54.692064+0000 mgr.smithi040.evuiyl (mgr.14180) 912 : cluster [DBG] pgmap v617: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:56 smithi149 bash[28710]: cluster 2023-12-08T23:04:54.692064+0000 mgr.smithi040.evuiyl (mgr.14180) 912 : cluster [DBG] pgmap v617: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:57.721 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:04:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:57 smithi149 bash[28710]: audit 2023-12-08T23:04:55.974000+0000 mgr.smithi040.evuiyl (mgr.14180) 913 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:57.929 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:57 smithi040 bash[24841]: audit 2023-12-08T23:04:55.974000+0000 mgr.smithi040.evuiyl (mgr.14180) 913 : audit [DBG] from='client.15148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:04:58.799 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:04:58 smithi040 bash[24841]: cluster 2023-12-08T23:04:56.693124+0000 mgr.smithi040.evuiyl (mgr.14180) 914 : cluster [DBG] pgmap v618: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:04:58.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:04:58 smithi149 bash[28710]: cluster 2023-12-08T23:04:56.693124+0000 mgr.smithi040.evuiyl (mgr.14180) 914 : cluster [DBG] pgmap v618: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:00.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:00 smithi040 bash[24841]: cluster 2023-12-08T23:04:58.694325+0000 mgr.smithi040.evuiyl (mgr.14180) 915 : cluster [DBG] pgmap v619: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:00.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:00 smithi149 bash[28710]: cluster 2023-12-08T23:04:58.694325+0000 mgr.smithi040.evuiyl (mgr.14180) 915 : cluster [DBG] pgmap v619: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:00.842 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:00.842 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:01.642 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:02.643 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:02 smithi149 bash[28710]: cluster 2023-12-08T23:05:00.695088+0000 mgr.smithi040.evuiyl (mgr.14180) 916 : cluster [DBG] pgmap v620: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:02 smithi149 bash[28710]: audit 2023-12-08T23:05:00.822843+0000 mgr.smithi040.evuiyl (mgr.14180) 917 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:02.841 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:02 smithi040 bash[24841]: cluster 2023-12-08T23:05:00.695088+0000 mgr.smithi040.evuiyl (mgr.14180) 916 : cluster [DBG] pgmap v620: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:02.841 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:02 smithi040 bash[24841]: audit 2023-12-08T23:05:00.822843+0000 mgr.smithi040.evuiyl (mgr.14180) 917 : audit [DBG] from='client.15152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:04.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:04 smithi149 bash[28710]: cluster 2023-12-08T23:05:02.696230+0000 mgr.smithi040.evuiyl (mgr.14180) 918 : cluster [DBG] pgmap v621: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:04 smithi040 bash[24841]: cluster 2023-12-08T23:05:02.696230+0000 mgr.smithi040.evuiyl (mgr.14180) 918 : cluster [DBG] pgmap v621: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:05.866 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:05.866 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:06.683 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:06 smithi149 bash[28710]: cluster 2023-12-08T23:05:04.697627+0000 mgr.smithi040.evuiyl (mgr.14180) 919 : cluster [DBG] pgmap v622: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:06 smithi040 bash[24841]: cluster 2023-12-08T23:05:04.697627+0000 mgr.smithi040.evuiyl (mgr.14180) 919 : cluster [DBG] pgmap v622: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:07.684 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:07 smithi149 bash[28710]: audit 2023-12-08T23:05:05.853462+0000 mgr.smithi040.evuiyl (mgr.14180) 920 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:07.892 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:07 smithi040 bash[24841]: audit 2023-12-08T23:05:05.853462+0000 mgr.smithi040.evuiyl (mgr.14180) 920 : audit [DBG] from='client.15156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:08 smithi149 bash[28710]: cluster 2023-12-08T23:05:06.698814+0000 mgr.smithi040.evuiyl (mgr.14180) 921 : cluster [DBG] pgmap v623: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:08.832 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:08 smithi040 bash[24841]: cluster 2023-12-08T23:05:06.698814+0000 mgr.smithi040.evuiyl (mgr.14180) 921 : cluster [DBG] pgmap v623: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:10.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:10 smithi040 bash[24841]: cluster 2023-12-08T23:05:08.699464+0000 mgr.smithi040.evuiyl (mgr.14180) 922 : cluster [DBG] pgmap v624: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:10.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:10 smithi149 bash[28710]: cluster 2023-12-08T23:05:08.699464+0000 mgr.smithi040.evuiyl (mgr.14180) 922 : cluster [DBG] pgmap v624: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:10.817 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:10.817 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:11.635 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:12.636 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:12.841 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:12 smithi040 bash[24841]: cluster 2023-12-08T23:05:10.700572+0000 mgr.smithi040.evuiyl (mgr.14180) 923 : cluster [DBG] pgmap v625: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:12.841 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:12 smithi040 bash[24841]: audit 2023-12-08T23:05:10.799666+0000 mgr.smithi040.evuiyl (mgr.14180) 924 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:12 smithi149 bash[28710]: cluster 2023-12-08T23:05:10.700572+0000 mgr.smithi040.evuiyl (mgr.14180) 923 : cluster [DBG] pgmap v625: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:12 smithi149 bash[28710]: audit 2023-12-08T23:05:10.799666+0000 mgr.smithi040.evuiyl (mgr.14180) 924 : audit [DBG] from='client.15160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:15.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:14 smithi040 bash[24841]: cluster 2023-12-08T23:05:12.701707+0000 mgr.smithi040.evuiyl (mgr.14180) 925 : cluster [DBG] pgmap v626: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:15.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:14 smithi149 bash[28710]: cluster 2023-12-08T23:05:12.701707+0000 mgr.smithi040.evuiyl (mgr.14180) 925 : cluster [DBG] pgmap v626: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:15.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:15 smithi040 bash[24841]: cluster 2023-12-08T23:05:14.703157+0000 mgr.smithi040.evuiyl (mgr.14180) 926 : cluster [DBG] pgmap v627: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:15.902 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:15.903 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:16.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:15 smithi149 bash[28710]: cluster 2023-12-08T23:05:14.703157+0000 mgr.smithi040.evuiyl (mgr.14180) 926 : cluster [DBG] pgmap v627: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:16.661 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:17.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:16 smithi040 bash[24841]: audit 2023-12-08T23:05:15.882878+0000 mgr.smithi040.evuiyl (mgr.14180) 927 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:16 smithi149 bash[28710]: audit 2023-12-08T23:05:15.882878+0000 mgr.smithi040.evuiyl (mgr.14180) 927 : audit [DBG] from='client.15164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:17.685 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:18.746 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:18 smithi040 bash[24841]: cluster 2023-12-08T23:05:16.704418+0000 mgr.smithi040.evuiyl (mgr.14180) 928 : cluster [DBG] pgmap v628: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:18.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:18 smithi149 bash[28710]: cluster 2023-12-08T23:05:16.704418+0000 mgr.smithi040.evuiyl (mgr.14180) 928 : cluster [DBG] pgmap v628: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:20.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:20 smithi040 bash[24841]: cluster 2023-12-08T23:05:18.705486+0000 mgr.smithi040.evuiyl (mgr.14180) 929 : cluster [DBG] pgmap v629: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:20.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:20 smithi149 bash[28710]: cluster 2023-12-08T23:05:18.705486+0000 mgr.smithi040.evuiyl (mgr.14180) 929 : cluster [DBG] pgmap v629: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:20.853 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:20.854 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:21.599 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:22.600 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:22.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:22 smithi040 bash[24841]: cluster 2023-12-08T23:05:20.706309+0000 mgr.smithi040.evuiyl (mgr.14180) 930 : cluster [DBG] pgmap v630: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:22.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:22 smithi040 bash[24841]: audit 2023-12-08T23:05:20.841028+0000 mgr.smithi040.evuiyl (mgr.14180) 931 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:22 smithi149 bash[28710]: cluster 2023-12-08T23:05:20.706309+0000 mgr.smithi040.evuiyl (mgr.14180) 930 : cluster [DBG] pgmap v630: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:22.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:22 smithi149 bash[28710]: audit 2023-12-08T23:05:20.841028+0000 mgr.smithi040.evuiyl (mgr.14180) 931 : audit [DBG] from='client.15168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:24.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:24 smithi040 bash[24841]: cluster 2023-12-08T23:05:22.707554+0000 mgr.smithi040.evuiyl (mgr.14180) 932 : cluster [DBG] pgmap v631: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:24.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:24 smithi149 bash[28710]: cluster 2023-12-08T23:05:22.707554+0000 mgr.smithi040.evuiyl (mgr.14180) 932 : cluster [DBG] pgmap v631: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:25.869 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:25.869 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:26.670 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:26.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:26 smithi040 bash[24841]: cluster 2023-12-08T23:05:24.708513+0000 mgr.smithi040.evuiyl (mgr.14180) 933 : cluster [DBG] pgmap v632: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:26.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:26 smithi149 bash[28710]: cluster 2023-12-08T23:05:24.708513+0000 mgr.smithi040.evuiyl (mgr.14180) 933 : cluster [DBG] pgmap v632: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:27.671 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:27.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:27 smithi040 bash[24841]: audit 2023-12-08T23:05:25.847195+0000 mgr.smithi040.evuiyl (mgr.14180) 934 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:27.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:27 smithi149 bash[28710]: audit 2023-12-08T23:05:25.847195+0000 mgr.smithi040.evuiyl (mgr.14180) 934 : audit [DBG] from='client.15172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:28.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:28 smithi040 bash[24841]: cluster 2023-12-08T23:05:26.709687+0000 mgr.smithi040.evuiyl (mgr.14180) 935 : cluster [DBG] pgmap v633: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:28.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:28 smithi149 bash[28710]: cluster 2023-12-08T23:05:26.709687+0000 mgr.smithi040.evuiyl (mgr.14180) 935 : cluster [DBG] pgmap v633: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:30 smithi040 bash[24841]: cluster 2023-12-08T23:05:28.710909+0000 mgr.smithi040.evuiyl (mgr.14180) 936 : cluster [DBG] pgmap v634: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:30.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:30 smithi149 bash[28710]: cluster 2023-12-08T23:05:28.710909+0000 mgr.smithi040.evuiyl (mgr.14180) 936 : cluster [DBG] pgmap v634: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:31.051 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:31.051 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:03:22.717978Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dsnpbd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:31.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:30.686429+0000 mon.smithi040 (mon.0) 898 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:30.972430+0000 mon.smithi040 (mon.0) 899 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:31.250959+0000 mon.smithi040 (mon.0) 900 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:31.252522+0000 mon.smithi040 (mon.0) 901 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:31.261304+0000 mon.smithi040 (mon.0) 902 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:31.271043+0000 mon.smithi040 (mon.0) 903 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:05:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:31 smithi040 bash[24841]: audit 2023-12-08T23:05:31.282352+0000 mon.smithi040 (mon.0) 904 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:30.686429+0000 mon.smithi040 (mon.0) 898 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:05:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:30.972430+0000 mon.smithi040 (mon.0) 899 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:31.250959+0000 mon.smithi040 (mon.0) 900 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:05:31.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:31.252522+0000 mon.smithi040 (mon.0) 901 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:05:31.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:31.261304+0000 mon.smithi040 (mon.0) 902 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:31.271043+0000 mon.smithi040 (mon.0) 903 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:05:31.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:31 smithi149 bash[28710]: audit 2023-12-08T23:05:31.282352+0000 mon.smithi040 (mon.0) 904 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:31.876 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: cluster 2023-12-08T23:05:30.711559+0000 mgr.smithi040.evuiyl (mgr.14180) 937 : cluster [DBG] pgmap v635: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: audit 2023-12-08T23:05:31.037947+0000 mgr.smithi040.evuiyl (mgr.14180) 938 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: cluster 2023-12-08T23:05:31.262229+0000 mgr.smithi040.evuiyl (mgr.14180) 939 : cluster [DBG] pgmap v636: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: cephadm 2023-12-08T23:05:31.286095+0000 mgr.smithi040.evuiyl (mgr.14180) 940 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mqmnaa on smithi149 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: cluster 2023-12-08T23:05:31.500046+0000 mon.smithi040 (mon.0) 905 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: cluster 2023-12-08T23:05:31.500099+0000 mon.smithi040 (mon.0) 906 : cluster [INF] Cluster is now healthy 2023-12-08T23:05:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:32 smithi149 bash[28710]: audit 2023-12-08T23:05:32.441541+0000 mon.smithi040 (mon.0) 907 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:32.877 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:32.888 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: cluster 2023-12-08T23:05:30.711559+0000 mgr.smithi040.evuiyl (mgr.14180) 937 : cluster [DBG] pgmap v635: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: audit 2023-12-08T23:05:31.037947+0000 mgr.smithi040.evuiyl (mgr.14180) 938 : audit [DBG] from='client.15176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: cluster 2023-12-08T23:05:31.262229+0000 mgr.smithi040.evuiyl (mgr.14180) 939 : cluster [DBG] pgmap v636: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: cephadm 2023-12-08T23:05:31.286095+0000 mgr.smithi040.evuiyl (mgr.14180) 940 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mqmnaa on smithi149 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: cluster 2023-12-08T23:05:31.500046+0000 mon.smithi040 (mon.0) 905 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: cluster 2023-12-08T23:05:31.500099+0000 mon.smithi040 (mon.0) 906 : cluster [INF] Cluster is now healthy 2023-12-08T23:05:32.889 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:32 smithi040 bash[24841]: audit 2023-12-08T23:05:32.441541+0000 mon.smithi040 (mon.0) 907 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:34.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:34 smithi149 bash[28710]: cluster 2023-12-08T23:05:33.262810+0000 mgr.smithi040.evuiyl (mgr.14180) 941 : cluster [DBG] pgmap v637: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:35.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:34 smithi040 bash[24841]: cluster 2023-12-08T23:05:33.262810+0000 mgr.smithi040.evuiyl (mgr.14180) 941 : cluster [DBG] pgmap v637: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:35.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:35 smithi149 bash[28710]: audit 2023-12-08T23:05:35.119901+0000 mon.smithi040 (mon.0) 908 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mqmnaa"}]: dispatch 2023-12-08T23:05:35.994 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:35.995 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:26.885877Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.tglebf on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-tglebf\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.tglebf\nDeploy daemon haproxy.nfs.foo.smithi149.tglebf ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.675668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.atzmfa on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-atzmfa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.atzmfa\nDeploy daemon haproxy.nfs.foo.smithi040.atzmfa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:04:30.677628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.mxjxwf on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:36.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:35 smithi040 bash[24841]: audit 2023-12-08T23:05:35.119901+0000 mon.smithi040 (mon.0) 908 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mqmnaa"}]: dispatch 2023-12-08T23:05:36.787 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: cephadm 2023-12-08T23:05:35.119122+0000 mgr.smithi040.evuiyl (mgr.14180) 942 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:36.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:36.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: cephadm 2023-12-08T23:05:35.119363+0000 mgr.smithi040.evuiyl (mgr.14180) 943 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: cephadm 2023-12-08T23:05:35.121302+0000 mgr.smithi040.evuiyl (mgr.14180) 944 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:36.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: cephadm 2023-12-08T23:05:35.123516+0000 mgr.smithi040.evuiyl (mgr.14180) 945 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.mbwscc on smithi040 2023-12-08T23:05:36.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:36 smithi149 bash[28710]: cluster 2023-12-08T23:05:35.263380+0000 mgr.smithi040.evuiyl (mgr.14180) 946 : cluster [DBG] pgmap v638: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: cephadm 2023-12-08T23:05:35.119122+0000 mgr.smithi040.evuiyl (mgr.14180) 942 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: cephadm 2023-12-08T23:05:35.119363+0000 mgr.smithi040.evuiyl (mgr.14180) 943 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: cephadm 2023-12-08T23:05:35.121302+0000 mgr.smithi040.evuiyl (mgr.14180) 944 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa 2023-12-08T23:05:37.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mqmnaa ... 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: cephadm 2023-12-08T23:05:35.123516+0000 mgr.smithi040.evuiyl (mgr.14180) 945 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.mbwscc on smithi040 2023-12-08T23:05:37.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:36 smithi040 bash[24841]: cluster 2023-12-08T23:05:35.263380+0000 mgr.smithi040.evuiyl (mgr.14180) 946 : cluster [DBG] pgmap v638: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:37.788 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:37.800 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:37 smithi040 bash[24841]: audit 2023-12-08T23:05:35.977598+0000 mgr.smithi040.evuiyl (mgr.14180) 947 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:37 smithi149 bash[28710]: audit 2023-12-08T23:05:35.977598+0000 mgr.smithi040.evuiyl (mgr.14180) 947 : audit [DBG] from='client.15180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:38 smithi040 bash[24841]: cluster 2023-12-08T23:05:37.264257+0000 mgr.smithi040.evuiyl (mgr.14180) 948 : cluster [DBG] pgmap v639: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:38.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:38 smithi149 bash[28710]: cluster 2023-12-08T23:05:37.264257+0000 mgr.smithi040.evuiyl (mgr.14180) 948 : cluster [DBG] pgmap v639: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:05:39.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:39 smithi149 bash[28710]: audit 2023-12-08T23:05:38.982583+0000 mon.smithi040 (mon.0) 909 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.mbwscc"}]: dispatch 2023-12-08T23:05:40.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:39 smithi040 bash[24841]: audit 2023-12-08T23:05:38.982583+0000 mon.smithi040 (mon.0) 909 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.mbwscc"}]: dispatch 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cephadm 2023-12-08T23:05:38.981922+0000 mgr.smithi040.evuiyl (mgr.14180) 949 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cephadm 2023-12-08T23:05:38.982174+0000 mgr.smithi040.evuiyl (mgr.14180) 950 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cephadm 2023-12-08T23:05:38.983433+0000 mgr.smithi040.evuiyl (mgr.14180) 951 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cephadm 2023-12-08T23:05:38.985312+0000 mgr.smithi040.evuiyl (mgr.14180) 952 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cephadm 2023-12-08T23:05:38.987935+0000 mgr.smithi040.evuiyl (mgr.14180) 953 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cluster 2023-12-08T23:05:38.989173+0000 mgr.smithi040.evuiyl (mgr.14180) 954 : cluster [DBG] pgmap v640: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: cluster 2023-12-08T23:05:39.543132+0000 mon.smithi040 (mon.0) 910 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:05:41.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:40 smithi040 bash[24841]: audit 2023-12-08T23:05:39.948858+0000 mon.smithi040 (mon.0) 911 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:41.018 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:41.019 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:41.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cephadm 2023-12-08T23:05:38.981922+0000 mgr.smithi040.evuiyl (mgr.14180) 949 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:05:41.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cephadm 2023-12-08T23:05:38.982174+0000 mgr.smithi040.evuiyl (mgr.14180) 950 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cephadm 2023-12-08T23:05:38.983433+0000 mgr.smithi040.evuiyl (mgr.14180) 951 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.mbwscc ... 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cephadm 2023-12-08T23:05:38.985312+0000 mgr.smithi040.evuiyl (mgr.14180) 952 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cephadm 2023-12-08T23:05:38.987935+0000 mgr.smithi040.evuiyl (mgr.14180) 953 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:05:41.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cluster 2023-12-08T23:05:38.989173+0000 mgr.smithi040.evuiyl (mgr.14180) 954 : cluster [DBG] pgmap v640: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:05:41.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: cluster 2023-12-08T23:05:39.543132+0000 mon.smithi040 (mon.0) 910 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:05:41.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:40 smithi149 bash[28710]: audit 2023-12-08T23:05:39.948858+0000 mon.smithi040 (mon.0) 911 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:41.739 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:42.740 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:42.943 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:42 smithi040 bash[24841]: cluster 2023-12-08T23:05:40.990292+0000 mgr.smithi040.evuiyl (mgr.14180) 955 : cluster [DBG] pgmap v641: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:05:42.943 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:42 smithi040 bash[24841]: audit 2023-12-08T23:05:40.998955+0000 mgr.smithi040.evuiyl (mgr.14180) 956 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:42 smithi149 bash[28710]: cluster 2023-12-08T23:05:40.990292+0000 mgr.smithi040.evuiyl (mgr.14180) 955 : cluster [DBG] pgmap v641: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:05:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:42 smithi149 bash[28710]: audit 2023-12-08T23:05:40.998955+0000 mgr.smithi040.evuiyl (mgr.14180) 956 : audit [DBG] from='client.15184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:45.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:44 smithi040 bash[24841]: cluster 2023-12-08T23:05:42.991499+0000 mgr.smithi040.evuiyl (mgr.14180) 957 : cluster [DBG] pgmap v642: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:44 smithi149 bash[28710]: cluster 2023-12-08T23:05:42.991499+0000 mgr.smithi040.evuiyl (mgr.14180) 957 : cluster [DBG] pgmap v642: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:45.912 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:45.912 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:46.680 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:47.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:46 smithi040 bash[24841]: cluster 2023-12-08T23:05:44.992911+0000 mgr.smithi040.evuiyl (mgr.14180) 958 : cluster [DBG] pgmap v643: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:47.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:46 smithi149 bash[28710]: cluster 2023-12-08T23:05:44.992911+0000 mgr.smithi040.evuiyl (mgr.14180) 958 : cluster [DBG] pgmap v643: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:47.681 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:48.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:47 smithi040 bash[24841]: audit 2023-12-08T23:05:45.894903+0000 mgr.smithi040.evuiyl (mgr.14180) 959 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:48.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:47 smithi040 bash[24841]: audit 2023-12-08T23:05:47.441640+0000 mon.smithi040 (mon.0) 912 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:48.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:47 smithi149 bash[28710]: audit 2023-12-08T23:05:45.894903+0000 mgr.smithi040.evuiyl (mgr.14180) 959 : audit [DBG] from='client.15188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:48.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:47 smithi149 bash[28710]: audit 2023-12-08T23:05:47.441640+0000 mon.smithi040 (mon.0) 912 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:05:48.860 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:48 smithi040 bash[24841]: cluster 2023-12-08T23:05:46.994045+0000 mgr.smithi040.evuiyl (mgr.14180) 960 : cluster [DBG] pgmap v644: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:49.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:48 smithi149 bash[28710]: cluster 2023-12-08T23:05:46.994045+0000 mgr.smithi040.evuiyl (mgr.14180) 960 : cluster [DBG] pgmap v644: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:50.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:49 smithi040 bash[24841]: cluster 2023-12-08T23:05:48.995120+0000 mgr.smithi040.evuiyl (mgr.14180) 961 : cluster [DBG] pgmap v645: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:49 smithi149 bash[28710]: cluster 2023-12-08T23:05:48.995120+0000 mgr.smithi040.evuiyl (mgr.14180) 961 : cluster [DBG] pgmap v645: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:05:50.744 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:50.744 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:51.480 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:52.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:52 smithi040 bash[24841]: audit 2023-12-08T23:05:50.726116+0000 mgr.smithi040.evuiyl (mgr.14180) 962 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:52.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:52 smithi040 bash[24841]: cluster 2023-12-08T23:05:50.996230+0000 mgr.smithi040.evuiyl (mgr.14180) 963 : cluster [DBG] pgmap v646: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:52.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:52 smithi149 bash[28710]: audit 2023-12-08T23:05:50.726116+0000 mgr.smithi040.evuiyl (mgr.14180) 962 : audit [DBG] from='client.15192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:52.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:52 smithi149 bash[28710]: cluster 2023-12-08T23:05:50.996230+0000 mgr.smithi040.evuiyl (mgr.14180) 963 : cluster [DBG] pgmap v646: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:05:52.481 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:54 smithi040 bash[24841]: cluster 2023-12-08T23:05:52.997460+0000 mgr.smithi040.evuiyl (mgr.14180) 964 : cluster [DBG] pgmap v647: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:54.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:54 smithi149 bash[28710]: cluster 2023-12-08T23:05:52.997460+0000 mgr.smithi040.evuiyl (mgr.14180) 964 : cluster [DBG] pgmap v647: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:55.800 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:05:55.801 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:05:56.541 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:05:56.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:56 smithi040 bash[24841]: cluster 2023-12-08T23:05:54.998998+0000 mgr.smithi040.evuiyl (mgr.14180) 965 : cluster [DBG] pgmap v648: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:56.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:56 smithi149 bash[28710]: cluster 2023-12-08T23:05:54.998998+0000 mgr.smithi040.evuiyl (mgr.14180) 965 : cluster [DBG] pgmap v648: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:57.541 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:05:57.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:57 smithi040 bash[24841]: audit 2023-12-08T23:05:55.786999+0000 mgr.smithi040.evuiyl (mgr.14180) 966 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:57 smithi149 bash[28710]: audit 2023-12-08T23:05:55.786999+0000 mgr.smithi040.evuiyl (mgr.14180) 966 : audit [DBG] from='client.15196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:05:58.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:05:58 smithi040 bash[24841]: cluster 2023-12-08T23:05:57.000256+0000 mgr.smithi040.evuiyl (mgr.14180) 967 : cluster [DBG] pgmap v649: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:05:58.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:05:58 smithi149 bash[28710]: cluster 2023-12-08T23:05:57.000256+0000 mgr.smithi040.evuiyl (mgr.14180) 967 : cluster [DBG] pgmap v649: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:00.715 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:00.715 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:00.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:00 smithi040 bash[24841]: cluster 2023-12-08T23:05:59.001390+0000 mgr.smithi040.evuiyl (mgr.14180) 968 : cluster [DBG] pgmap v650: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:00.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:00 smithi149 bash[28710]: cluster 2023-12-08T23:05:59.001390+0000 mgr.smithi040.evuiyl (mgr.14180) 968 : cluster [DBG] pgmap v650: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:01.464 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:02.466 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:02.811 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:02 smithi040 bash[24841]: audit 2023-12-08T23:06:00.695737+0000 mgr.smithi040.evuiyl (mgr.14180) 969 : audit [DBG] from='client.24943 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:02.812 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:02 smithi040 bash[24841]: cluster 2023-12-08T23:06:01.002106+0000 mgr.smithi040.evuiyl (mgr.14180) 970 : cluster [DBG] pgmap v651: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:02.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:02 smithi149 bash[28710]: audit 2023-12-08T23:06:00.695737+0000 mgr.smithi040.evuiyl (mgr.14180) 969 : audit [DBG] from='client.24943 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:02.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:02 smithi149 bash[28710]: cluster 2023-12-08T23:06:01.002106+0000 mgr.smithi040.evuiyl (mgr.14180) 970 : cluster [DBG] pgmap v651: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:04.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:04 smithi149 bash[28710]: cluster 2023-12-08T23:06:03.002826+0000 mgr.smithi040.evuiyl (mgr.14180) 971 : cluster [DBG] pgmap v652: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:04 smithi040 bash[24841]: cluster 2023-12-08T23:06:03.002826+0000 mgr.smithi040.evuiyl (mgr.14180) 971 : cluster [DBG] pgmap v652: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:05.856 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:05.857 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:06.614 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:06.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:06 smithi149 bash[28710]: cluster 2023-12-08T23:06:05.003468+0000 mgr.smithi040.evuiyl (mgr.14180) 972 : cluster [DBG] pgmap v653: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:06 smithi040 bash[24841]: cluster 2023-12-08T23:06:05.003468+0000 mgr.smithi040.evuiyl (mgr.14180) 972 : cluster [DBG] pgmap v653: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:07.616 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:07 smithi149 bash[28710]: audit 2023-12-08T23:06:05.839551+0000 mgr.smithi040.evuiyl (mgr.14180) 973 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:08.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:07 smithi040 bash[24841]: audit 2023-12-08T23:06:05.839551+0000 mgr.smithi040.evuiyl (mgr.14180) 973 : audit [DBG] from='client.15204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:08 smithi149 bash[28710]: cluster 2023-12-08T23:06:07.004642+0000 mgr.smithi040.evuiyl (mgr.14180) 974 : cluster [DBG] pgmap v654: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:08.831 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:08 smithi040 bash[24841]: cluster 2023-12-08T23:06:07.004642+0000 mgr.smithi040.evuiyl (mgr.14180) 974 : cluster [DBG] pgmap v654: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:10.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:10 smithi149 bash[28710]: cluster 2023-12-08T23:06:09.005821+0000 mgr.smithi040.evuiyl (mgr.14180) 975 : cluster [DBG] pgmap v655: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:11.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:10 smithi040 bash[24841]: cluster 2023-12-08T23:06:09.005821+0000 mgr.smithi040.evuiyl (mgr.14180) 975 : cluster [DBG] pgmap v655: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:11.067 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:11.067 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:11.900 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:12.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:12 smithi149 bash[28710]: cluster 2023-12-08T23:06:11.006945+0000 mgr.smithi040.evuiyl (mgr.14180) 976 : cluster [DBG] pgmap v656: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:12.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:12 smithi149 bash[28710]: audit 2023-12-08T23:06:11.049521+0000 mgr.smithi040.evuiyl (mgr.14180) 977 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:12.901 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:12.916 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:12 smithi040 bash[24841]: cluster 2023-12-08T23:06:11.006945+0000 mgr.smithi040.evuiyl (mgr.14180) 976 : cluster [DBG] pgmap v656: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:12.916 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:12 smithi040 bash[24841]: audit 2023-12-08T23:06:11.049521+0000 mgr.smithi040.evuiyl (mgr.14180) 977 : audit [DBG] from='client.15208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:14.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:14 smithi040 bash[24841]: cluster 2023-12-08T23:06:13.008028+0000 mgr.smithi040.evuiyl (mgr.14180) 978 : cluster [DBG] pgmap v657: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:14.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:14 smithi149 bash[28710]: cluster 2023-12-08T23:06:13.008028+0000 mgr.smithi040.evuiyl (mgr.14180) 978 : cluster [DBG] pgmap v657: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:16.204 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:16.204 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:16.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:16 smithi040 bash[24841]: cluster 2023-12-08T23:06:15.008707+0000 mgr.smithi040.evuiyl (mgr.14180) 979 : cluster [DBG] pgmap v658: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:17.046 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:16 smithi149 bash[28710]: cluster 2023-12-08T23:06:15.008707+0000 mgr.smithi040.evuiyl (mgr.14180) 979 : cluster [DBG] pgmap v658: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:18.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:17 smithi040 bash[24841]: audit 2023-12-08T23:06:16.186392+0000 mgr.smithi040.evuiyl (mgr.14180) 980 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:18.047 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:18.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:17 smithi149 bash[28710]: audit 2023-12-08T23:06:16.186392+0000 mgr.smithi040.evuiyl (mgr.14180) 980 : audit [DBG] from='client.15212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:19.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:18 smithi040 bash[24841]: cluster 2023-12-08T23:06:17.009343+0000 mgr.smithi040.evuiyl (mgr.14180) 981 : cluster [DBG] pgmap v659: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:19.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:18 smithi149 bash[28710]: cluster 2023-12-08T23:06:17.009343+0000 mgr.smithi040.evuiyl (mgr.14180) 981 : cluster [DBG] pgmap v659: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:20.877 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:20 smithi040 bash[24841]: cluster 2023-12-08T23:06:19.010443+0000 mgr.smithi040.evuiyl (mgr.14180) 982 : cluster [DBG] pgmap v660: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:20 smithi149 bash[28710]: cluster 2023-12-08T23:06:19.010443+0000 mgr.smithi040.evuiyl (mgr.14180) 982 : cluster [DBG] pgmap v660: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:21.288 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:21.288 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:22.080 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:22 smithi040 bash[24841]: cluster 2023-12-08T23:06:21.011652+0000 mgr.smithi040.evuiyl (mgr.14180) 983 : cluster [DBG] pgmap v661: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:22 smithi040 bash[24841]: audit 2023-12-08T23:06:21.270235+0000 mgr.smithi040.evuiyl (mgr.14180) 984 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:23.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:22 smithi149 bash[28710]: cluster 2023-12-08T23:06:21.011652+0000 mgr.smithi040.evuiyl (mgr.14180) 983 : cluster [DBG] pgmap v661: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:23.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:22 smithi149 bash[28710]: audit 2023-12-08T23:06:21.270235+0000 mgr.smithi040.evuiyl (mgr.14180) 984 : audit [DBG] from='client.15216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:23.081 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:23 smithi040 bash[24841]: cluster 2023-12-08T23:06:23.012952+0000 mgr.smithi040.evuiyl (mgr.14180) 985 : cluster [DBG] pgmap v662: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:23 smithi149 bash[28710]: cluster 2023-12-08T23:06:23.012952+0000 mgr.smithi040.evuiyl (mgr.14180) 985 : cluster [DBG] pgmap v662: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:26.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:26 smithi040 bash[24841]: cluster 2023-12-08T23:06:25.013843+0000 mgr.smithi040.evuiyl (mgr.14180) 986 : cluster [DBG] pgmap v663: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:26.400 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:26.400 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:26.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:26 smithi149 bash[28710]: cluster 2023-12-08T23:06:25.013843+0000 mgr.smithi040.evuiyl (mgr.14180) 986 : cluster [DBG] pgmap v663: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:27.172 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:27.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:27 smithi040 bash[24841]: audit 2023-12-08T23:06:26.381691+0000 mgr.smithi040.evuiyl (mgr.14180) 987 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:27.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:27 smithi149 bash[28710]: audit 2023-12-08T23:06:26.381691+0000 mgr.smithi040.evuiyl (mgr.14180) 987 : audit [DBG] from='client.15220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:28.173 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:28.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:28 smithi040 bash[24841]: cluster 2023-12-08T23:06:27.015196+0000 mgr.smithi040.evuiyl (mgr.14180) 988 : cluster [DBG] pgmap v664: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:28.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:28 smithi149 bash[28710]: cluster 2023-12-08T23:06:27.015196+0000 mgr.smithi040.evuiyl (mgr.14180) 988 : cluster [DBG] pgmap v664: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:30.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:30 smithi040 bash[24841]: cluster 2023-12-08T23:06:29.016076+0000 mgr.smithi040.evuiyl (mgr.14180) 989 : cluster [DBG] pgmap v665: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:30.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:30 smithi149 bash[28710]: cluster 2023-12-08T23:06:29.016076+0000 mgr.smithi040.evuiyl (mgr.14180) 989 : cluster [DBG] pgmap v665: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:31.384 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:31.384 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:32.190 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:32 smithi040 bash[24841]: cluster 2023-12-08T23:06:31.017224+0000 mgr.smithi040.evuiyl (mgr.14180) 990 : cluster [DBG] pgmap v666: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:32 smithi040 bash[24841]: audit 2023-12-08T23:06:31.365024+0000 mgr.smithi040.evuiyl (mgr.14180) 991 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:32.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:32 smithi149 bash[28710]: cluster 2023-12-08T23:06:31.017224+0000 mgr.smithi040.evuiyl (mgr.14180) 990 : cluster [DBG] pgmap v666: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:32.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:32 smithi149 bash[28710]: audit 2023-12-08T23:06:31.365024+0000 mgr.smithi040.evuiyl (mgr.14180) 991 : audit [DBG] from='client.15224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:33.192 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:34.624 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:34 smithi040 bash[24841]: cluster 2023-12-08T23:06:33.018374+0000 mgr.smithi040.evuiyl (mgr.14180) 992 : cluster [DBG] pgmap v667: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:34.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:34 smithi149 bash[28710]: cluster 2023-12-08T23:06:33.018374+0000 mgr.smithi040.evuiyl (mgr.14180) 992 : cluster [DBG] pgmap v667: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:36.412 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:36.412 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:36 smithi040 bash[24841]: cluster 2023-12-08T23:06:35.019213+0000 mgr.smithi040.evuiyl (mgr.14180) 993 : cluster [DBG] pgmap v668: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:36.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:36 smithi149 bash[28710]: cluster 2023-12-08T23:06:35.019213+0000 mgr.smithi040.evuiyl (mgr.14180) 993 : cluster [DBG] pgmap v668: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:37.169 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:37.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:37 smithi149 bash[28710]: audit 2023-12-08T23:06:36.398338+0000 mgr.smithi040.evuiyl (mgr.14180) 994 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:38.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:37 smithi040 bash[24841]: audit 2023-12-08T23:06:36.398338+0000 mgr.smithi040.evuiyl (mgr.14180) 994 : audit [DBG] from='client.15228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:38.170 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:38 smithi040 bash[24841]: cluster 2023-12-08T23:06:37.019867+0000 mgr.smithi040.evuiyl (mgr.14180) 995 : cluster [DBG] pgmap v669: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:38.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:38 smithi149 bash[28710]: cluster 2023-12-08T23:06:37.019867+0000 mgr.smithi040.evuiyl (mgr.14180) 995 : cluster [DBG] pgmap v669: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:39.699 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:39 smithi040 bash[24841]: audit 2023-12-08T23:06:38.991935+0000 mon.smithi040 (mon.0) 913 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:06:39.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:39 smithi149 bash[28710]: audit 2023-12-08T23:06:38.991935+0000 mon.smithi040 (mon.0) 913 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:06:40.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:40 smithi040 bash[24841]: cluster 2023-12-08T23:06:39.020737+0000 mgr.smithi040.evuiyl (mgr.14180) 996 : cluster [DBG] pgmap v670: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:40.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:40 smithi149 bash[28710]: cluster 2023-12-08T23:06:39.020737+0000 mgr.smithi040.evuiyl (mgr.14180) 996 : cluster [DBG] pgmap v670: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:41.544 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:41.544 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T22:56:24.331093Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T22:56:23.867445Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T22:56:24.331595Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T22:56:23.868351Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T22:56:23.867631Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T22:56:23.867743Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T22:56:23.868462Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T22:56:23.867848Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T22:56:23.867949Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T22:56:24.332064Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:42.351 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:42.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:42 smithi040 bash[24841]: cluster 2023-12-08T23:06:41.021845+0000 mgr.smithi040.evuiyl (mgr.14180) 997 : cluster [DBG] pgmap v671: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:42.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:42 smithi040 bash[24841]: audit 2023-12-08T23:06:41.531305+0000 mgr.smithi040.evuiyl (mgr.14180) 998 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:42.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:42 smithi149 bash[28710]: cluster 2023-12-08T23:06:41.021845+0000 mgr.smithi040.evuiyl (mgr.14180) 997 : cluster [DBG] pgmap v671: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:06:42.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:42 smithi149 bash[28710]: audit 2023-12-08T23:06:41.531305+0000 mgr.smithi040.evuiyl (mgr.14180) 998 : audit [DBG] from='client.15232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:43.353 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:44.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:44 smithi149 bash[28710]: cluster 2023-12-08T23:06:43.023094+0000 mgr.smithi040.evuiyl (mgr.14180) 999 : cluster [DBG] pgmap v672: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:44.881 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:44 smithi040 bash[24841]: cluster 2023-12-08T23:06:43.023094+0000 mgr.smithi040.evuiyl (mgr.14180) 999 : cluster [DBG] pgmap v672: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:45.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:44.618848+0000 mon.smithi040 (mon.0) 914 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:44.976263+0000 mon.smithi040 (mon.0) 915 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: cluster 2023-12-08T23:06:45.023803+0000 mgr.smithi040.evuiyl (mgr.14180) 1000 : cluster [DBG] pgmap v673: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:45.243546+0000 mon.smithi040 (mon.0) 916 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:45.244771+0000 mon.smithi040 (mon.0) 917 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:45.252968+0000 mon.smithi040 (mon.0) 918 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: cluster 2023-12-08T23:06:45.253783+0000 mgr.smithi040.evuiyl (mgr.14180) 1001 : cluster [DBG] pgmap v674: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:45.261221+0000 mon.smithi040 (mon.0) 919 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: audit 2023-12-08T23:06:45.273270+0000 mon.smithi040 (mon.0) 920 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:45 smithi040 bash[24841]: cephadm 2023-12-08T23:06:45.277069+0000 mgr.smithi040.evuiyl (mgr.14180) 1002 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.djyidm on smithi149 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:44.618848+0000 mon.smithi040 (mon.0) 914 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:44.976263+0000 mon.smithi040 (mon.0) 915 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: cluster 2023-12-08T23:06:45.023803+0000 mgr.smithi040.evuiyl (mgr.14180) 1000 : cluster [DBG] pgmap v673: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:45.243546+0000 mon.smithi040 (mon.0) 916 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:45.244771+0000 mon.smithi040 (mon.0) 917 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:45.252968+0000 mon.smithi040 (mon.0) 918 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: cluster 2023-12-08T23:06:45.253783+0000 mgr.smithi040.evuiyl (mgr.14180) 1001 : cluster [DBG] pgmap v674: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:45.261221+0000 mon.smithi040 (mon.0) 919 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: audit 2023-12-08T23:06:45.273270+0000 mon.smithi040 (mon.0) 920 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:45 smithi149 bash[28710]: cephadm 2023-12-08T23:06:45.277069+0000 mgr.smithi040.evuiyl (mgr.14180) 1002 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.djyidm on smithi149 2023-12-08T23:06:46.960 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:46.960 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:04:30.679339Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.pgwbau on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:47.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:46 smithi040 bash[24841]: cluster 2023-12-08T23:06:45.974017+0000 mon.smithi040 (mon.0) 921 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:06:47.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:46 smithi040 bash[24841]: cluster 2023-12-08T23:06:45.974045+0000 mon.smithi040 (mon.0) 922 : cluster [INF] Cluster is now healthy 2023-12-08T23:06:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:46 smithi149 bash[28710]: cluster 2023-12-08T23:06:45.974017+0000 mon.smithi040 (mon.0) 921 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:06:47.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:46 smithi149 bash[28710]: cluster 2023-12-08T23:06:45.974045+0000 mon.smithi040 (mon.0) 922 : cluster [INF] Cluster is now healthy 2023-12-08T23:06:47.776 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:48.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:48 smithi040 bash[24841]: audit 2023-12-08T23:06:46.942240+0000 mgr.smithi040.evuiyl (mgr.14180) 1003 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:48.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:48 smithi040 bash[24841]: cluster 2023-12-08T23:06:47.254709+0000 mgr.smithi040.evuiyl (mgr.14180) 1004 : cluster [DBG] pgmap v675: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:48.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:48 smithi040 bash[24841]: audit 2023-12-08T23:06:47.442920+0000 mon.smithi040 (mon.0) 923 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:48.777 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:48 smithi149 bash[28710]: audit 2023-12-08T23:06:46.942240+0000 mgr.smithi040.evuiyl (mgr.14180) 1003 : audit [DBG] from='client.15236 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:48 smithi149 bash[28710]: cluster 2023-12-08T23:06:47.254709+0000 mgr.smithi040.evuiyl (mgr.14180) 1004 : cluster [DBG] pgmap v675: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:48.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:48 smithi149 bash[28710]: audit 2023-12-08T23:06:47.442920+0000 mon.smithi040 (mon.0) 923 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:49 smithi040 bash[24841]: audit 2023-12-08T23:06:49.127139+0000 mon.smithi040 (mon.0) 924 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.djyidm"}]: dispatch 2023-12-08T23:06:49.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:49 smithi149 bash[28710]: audit 2023-12-08T23:06:49.127139+0000 mon.smithi040 (mon.0) 924 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.djyidm"}]: dispatch 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: cephadm 2023-12-08T23:06:49.125742+0000 mgr.smithi040.evuiyl (mgr.14180) 1005 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: cephadm 2023-12-08T23:06:49.126326+0000 mgr.smithi040.evuiyl (mgr.14180) 1006 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: cephadm 2023-12-08T23:06:49.128641+0000 mgr.smithi040.evuiyl (mgr.14180) 1007 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: cephadm 2023-12-08T23:06:49.133505+0000 mgr.smithi040.evuiyl (mgr.14180) 1008 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ucadvm on smithi040 2023-12-08T23:06:50.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:50 smithi040 bash[24841]: cluster 2023-12-08T23:06:49.255267+0000 mgr.smithi040.evuiyl (mgr.14180) 1009 : cluster [DBG] pgmap v676: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: cephadm 2023-12-08T23:06:49.125742+0000 mgr.smithi040.evuiyl (mgr.14180) 1005 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: cephadm 2023-12-08T23:06:49.126326+0000 mgr.smithi040.evuiyl (mgr.14180) 1006 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: cephadm 2023-12-08T23:06:49.128641+0000 mgr.smithi040.evuiyl (mgr.14180) 1007 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.djyidm ... 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:50.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: cephadm 2023-12-08T23:06:49.133505+0000 mgr.smithi040.evuiyl (mgr.14180) 1008 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ucadvm on smithi040 2023-12-08T23:06:50.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:50 smithi149 bash[28710]: cluster 2023-12-08T23:06:49.255267+0000 mgr.smithi040.evuiyl (mgr.14180) 1009 : cluster [DBG] pgmap v676: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:52.304 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:52.304 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:35.121175Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mqmnaa on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mqmnaa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mqmnaa\nDeploy daemon haproxy.nfs.foo.smithi149.mqmnaa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.983317Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.mbwscc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-mbwscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.mbwscc\nDeploy daemon haproxy.nfs.foo.smithi040.mbwscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:05:38.985210Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.zrhshq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:52.713 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:52 smithi040 bash[24841]: cluster 2023-12-08T23:06:51.256243+0000 mgr.smithi040.evuiyl (mgr.14180) 1010 : cluster [DBG] pgmap v677: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:52.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:52 smithi149 bash[28710]: cluster 2023-12-08T23:06:51.256243+0000 mgr.smithi040.evuiyl (mgr.14180) 1010 : cluster [DBG] pgmap v677: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:53.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:53.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:53 smithi040 bash[24841]: audit 2023-12-08T23:06:52.286987+0000 mgr.smithi040.evuiyl (mgr.14180) 1011 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:53.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:53 smithi040 bash[24841]: audit 2023-12-08T23:06:53.287467+0000 mon.smithi040 (mon.0) 925 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ucadvm"}]: dispatch 2023-12-08T23:06:53.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:53 smithi149 bash[28710]: audit 2023-12-08T23:06:52.286987+0000 mgr.smithi040.evuiyl (mgr.14180) 1011 : audit [DBG] from='client.15240 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:53.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:53 smithi149 bash[28710]: audit 2023-12-08T23:06:53.287467+0000 mon.smithi040 (mon.0) 925 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ucadvm"}]: dispatch 2023-12-08T23:06:54.229 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cluster 2023-12-08T23:06:53.256960+0000 mgr.smithi040.evuiyl (mgr.14180) 1012 : cluster [DBG] pgmap v678: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cephadm 2023-12-08T23:06:53.286699+0000 mgr.smithi040.evuiyl (mgr.14180) 1013 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cephadm 2023-12-08T23:06:53.286971+0000 mgr.smithi040.evuiyl (mgr.14180) 1014 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cephadm 2023-12-08T23:06:53.288592+0000 mgr.smithi040.evuiyl (mgr.14180) 1015 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:06:54.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cephadm 2023-12-08T23:06:53.290876+0000 mgr.smithi040.evuiyl (mgr.14180) 1016 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cephadm 2023-12-08T23:06:53.292714+0000 mgr.smithi040.evuiyl (mgr.14180) 1017 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cluster 2023-12-08T23:06:53.293736+0000 mgr.smithi040.evuiyl (mgr.14180) 1018 : cluster [DBG] pgmap v679: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 247 B/s rd, 0 op/s 2023-12-08T23:06:54.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:54 smithi040 bash[24841]: cluster 2023-12-08T23:06:53.487816+0000 mon.smithi040 (mon.0) 926 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:06:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cluster 2023-12-08T23:06:53.256960+0000 mgr.smithi040.evuiyl (mgr.14180) 1012 : cluster [DBG] pgmap v678: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2023-12-08T23:06:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cephadm 2023-12-08T23:06:53.286699+0000 mgr.smithi040.evuiyl (mgr.14180) 1013 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:06:54.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cephadm 2023-12-08T23:06:53.286971+0000 mgr.smithi040.evuiyl (mgr.14180) 1014 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cephadm 2023-12-08T23:06:53.288592+0000 mgr.smithi040.evuiyl (mgr.14180) 1015 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.819 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ucadvm ... 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cephadm 2023-12-08T23:06:53.290876+0000 mgr.smithi040.evuiyl (mgr.14180) 1016 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cephadm 2023-12-08T23:06:53.292714+0000 mgr.smithi040.evuiyl (mgr.14180) 1017 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cluster 2023-12-08T23:06:53.293736+0000 mgr.smithi040.evuiyl (mgr.14180) 1018 : cluster [DBG] pgmap v679: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 247 B/s rd, 0 op/s 2023-12-08T23:06:54.820 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:54 smithi149 bash[28710]: cluster 2023-12-08T23:06:53.487816+0000 mon.smithi040 (mon.0) 926 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:06:56.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:55 smithi040 bash[24841]: audit 2023-12-08T23:06:54.996239+0000 mon.smithi040 (mon.0) 927 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:56.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:55 smithi040 bash[24841]: cluster 2023-12-08T23:06:55.295096+0000 mgr.smithi040.evuiyl (mgr.14180) 1019 : cluster [DBG] pgmap v680: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:06:56.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:56 smithi149 bash[28710]: audit 2023-12-08T23:06:54.996239+0000 mon.smithi040 (mon.0) 927 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:06:56.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:56 smithi149 bash[28710]: cluster 2023-12-08T23:06:55.295096+0000 mgr.smithi040.evuiyl (mgr.14180) 1019 : cluster [DBG] pgmap v680: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:06:57.744 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:06:57.744 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:06:58.569 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:06:58.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:58 smithi040 bash[24841]: cluster 2023-12-08T23:06:57.296296+0000 mgr.smithi040.evuiyl (mgr.14180) 1020 : cluster [DBG] pgmap v681: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:06:58.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:58 smithi149 bash[28710]: cluster 2023-12-08T23:06:57.296296+0000 mgr.smithi040.evuiyl (mgr.14180) 1020 : cluster [DBG] pgmap v681: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:06:59.570 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:06:59.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:06:59 smithi040 bash[24841]: audit 2023-12-08T23:06:57.726386+0000 mgr.smithi040.evuiyl (mgr.14180) 1021 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:06:59.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:06:59 smithi149 bash[28710]: audit 2023-12-08T23:06:57.726386+0000 mgr.smithi040.evuiyl (mgr.14180) 1021 : audit [DBG] from='client.15244 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:00.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:00 smithi040 bash[24841]: cluster 2023-12-08T23:06:59.297548+0000 mgr.smithi040.evuiyl (mgr.14180) 1022 : cluster [DBG] pgmap v682: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:00.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:00 smithi149 bash[28710]: cluster 2023-12-08T23:06:59.297548+0000 mgr.smithi040.evuiyl (mgr.14180) 1022 : cluster [DBG] pgmap v682: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:02.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:02 smithi040 bash[24841]: cluster 2023-12-08T23:07:01.298800+0000 mgr.smithi040.evuiyl (mgr.14180) 1023 : cluster [DBG] pgmap v683: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:02.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:02 smithi040 bash[24841]: audit 2023-12-08T23:07:02.443236+0000 mon.smithi040 (mon.0) 928 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:02.790 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:02.791 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:02 smithi149 bash[28710]: cluster 2023-12-08T23:07:01.298800+0000 mgr.smithi040.evuiyl (mgr.14180) 1023 : cluster [DBG] pgmap v683: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:02 smithi149 bash[28710]: audit 2023-12-08T23:07:02.443236+0000 mon.smithi040 (mon.0) 928 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:03.563 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:04.565 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:04.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:04 smithi149 bash[28710]: audit 2023-12-08T23:07:02.777542+0000 mgr.smithi040.evuiyl (mgr.14180) 1024 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:04.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:04 smithi149 bash[28710]: cluster 2023-12-08T23:07:03.300032+0000 mgr.smithi040.evuiyl (mgr.14180) 1025 : cluster [DBG] pgmap v684: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:04 smithi040 bash[24841]: audit 2023-12-08T23:07:02.777542+0000 mgr.smithi040.evuiyl (mgr.14180) 1024 : audit [DBG] from='client.15248 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:04 smithi040 bash[24841]: cluster 2023-12-08T23:07:03.300032+0000 mgr.smithi040.evuiyl (mgr.14180) 1025 : cluster [DBG] pgmap v684: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 203 B/s rd, 0 op/s 2023-12-08T23:07:06.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:06 smithi149 bash[28710]: cluster 2023-12-08T23:07:05.301638+0000 mgr.smithi040.evuiyl (mgr.14180) 1026 : cluster [DBG] pgmap v685: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:06 smithi040 bash[24841]: cluster 2023-12-08T23:07:05.301638+0000 mgr.smithi040.evuiyl (mgr.14180) 1026 : cluster [DBG] pgmap v685: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:07.906 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:07.906 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:08.696 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:08.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:08 smithi149 bash[28710]: cluster 2023-12-08T23:07:07.302977+0000 mgr.smithi040.evuiyl (mgr.14180) 1027 : cluster [DBG] pgmap v686: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:09.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:08 smithi040 bash[24841]: cluster 2023-12-08T23:07:07.302977+0000 mgr.smithi040.evuiyl (mgr.14180) 1027 : cluster [DBG] pgmap v686: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:09.697 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:09.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:09 smithi149 bash[28710]: audit 2023-12-08T23:07:07.886666+0000 mgr.smithi040.evuiyl (mgr.14180) 1028 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:09.901 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:09 smithi040 bash[24841]: audit 2023-12-08T23:07:07.886666+0000 mgr.smithi040.evuiyl (mgr.14180) 1028 : audit [DBG] from='client.15252 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:10.798 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:10 smithi040 bash[24841]: cluster 2023-12-08T23:07:09.304384+0000 mgr.smithi040.evuiyl (mgr.14180) 1029 : cluster [DBG] pgmap v687: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:10.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:10 smithi149 bash[28710]: cluster 2023-12-08T23:07:09.304384+0000 mgr.smithi040.evuiyl (mgr.14180) 1029 : cluster [DBG] pgmap v687: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:12.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:12 smithi040 bash[24841]: cluster 2023-12-08T23:07:11.305553+0000 mgr.smithi040.evuiyl (mgr.14180) 1030 : cluster [DBG] pgmap v688: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:12.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:12 smithi149 bash[28710]: cluster 2023-12-08T23:07:11.305553+0000 mgr.smithi040.evuiyl (mgr.14180) 1030 : cluster [DBG] pgmap v688: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:12.870 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:12.870 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:13.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:14.666 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:14.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:14 smithi149 bash[28710]: audit 2023-12-08T23:07:12.846774+0000 mgr.smithi040.evuiyl (mgr.14180) 1031 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:14.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:14 smithi149 bash[28710]: cluster 2023-12-08T23:07:13.306671+0000 mgr.smithi040.evuiyl (mgr.14180) 1032 : cluster [DBG] pgmap v689: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:14.867 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:14 smithi040 bash[24841]: audit 2023-12-08T23:07:12.846774+0000 mgr.smithi040.evuiyl (mgr.14180) 1031 : audit [DBG] from='client.15256 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:14.867 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:14 smithi040 bash[24841]: cluster 2023-12-08T23:07:13.306671+0000 mgr.smithi040.evuiyl (mgr.14180) 1032 : cluster [DBG] pgmap v689: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:17.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:16 smithi040 bash[24841]: cluster 2023-12-08T23:07:15.307909+0000 mgr.smithi040.evuiyl (mgr.14180) 1033 : cluster [DBG] pgmap v690: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:16 smithi149 bash[28710]: cluster 2023-12-08T23:07:15.307909+0000 mgr.smithi040.evuiyl (mgr.14180) 1033 : cluster [DBG] pgmap v690: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:18.044 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:18.044 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:18.826 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:18 smithi040 bash[24841]: cluster 2023-12-08T23:07:17.308929+0000 mgr.smithi040.evuiyl (mgr.14180) 1034 : cluster [DBG] pgmap v691: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:18.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:18 smithi149 bash[28710]: cluster 2023-12-08T23:07:17.308929+0000 mgr.smithi040.evuiyl (mgr.14180) 1034 : cluster [DBG] pgmap v691: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:19.827 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:19.841 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:19 smithi040 bash[24841]: audit 2023-12-08T23:07:18.026935+0000 mgr.smithi040.evuiyl (mgr.14180) 1035 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:19 smithi149 bash[28710]: audit 2023-12-08T23:07:18.026935+0000 mgr.smithi040.evuiyl (mgr.14180) 1035 : audit [DBG] from='client.15260 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:20.921 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:20 smithi040 bash[24841]: cluster 2023-12-08T23:07:19.310224+0000 mgr.smithi040.evuiyl (mgr.14180) 1036 : cluster [DBG] pgmap v692: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:21.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:20 smithi149 bash[28710]: cluster 2023-12-08T23:07:19.310224+0000 mgr.smithi040.evuiyl (mgr.14180) 1036 : cluster [DBG] pgmap v692: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:22 smithi040 bash[24841]: cluster 2023-12-08T23:07:21.311115+0000 mgr.smithi040.evuiyl (mgr.14180) 1037 : cluster [DBG] pgmap v693: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:23.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:22 smithi149 bash[28710]: cluster 2023-12-08T23:07:21.311115+0000 mgr.smithi040.evuiyl (mgr.14180) 1037 : cluster [DBG] pgmap v693: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:23.083 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:23.083 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:23.903 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:24.904 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:24.917 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:24 smithi040 bash[24841]: audit 2023-12-08T23:07:23.064105+0000 mgr.smithi040.evuiyl (mgr.14180) 1038 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:24.917 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:24 smithi040 bash[24841]: cluster 2023-12-08T23:07:23.311717+0000 mgr.smithi040.evuiyl (mgr.14180) 1039 : cluster [DBG] pgmap v694: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:25.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:24 smithi149 bash[28710]: audit 2023-12-08T23:07:23.064105+0000 mgr.smithi040.evuiyl (mgr.14180) 1038 : audit [DBG] from='client.15264 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:24 smithi149 bash[28710]: cluster 2023-12-08T23:07:23.311717+0000 mgr.smithi040.evuiyl (mgr.14180) 1039 : cluster [DBG] pgmap v694: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:26.995 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:26 smithi040 bash[24841]: cluster 2023-12-08T23:07:25.313031+0000 mgr.smithi040.evuiyl (mgr.14180) 1040 : cluster [DBG] pgmap v695: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:26 smithi149 bash[28710]: cluster 2023-12-08T23:07:25.313031+0000 mgr.smithi040.evuiyl (mgr.14180) 1040 : cluster [DBG] pgmap v695: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:28.334 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:28.334 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:28.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:28 smithi040 bash[24841]: cluster 2023-12-08T23:07:27.314213+0000 mgr.smithi040.evuiyl (mgr.14180) 1041 : cluster [DBG] pgmap v696: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:28.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:28 smithi149 bash[28710]: cluster 2023-12-08T23:07:27.314213+0000 mgr.smithi040.evuiyl (mgr.14180) 1041 : cluster [DBG] pgmap v696: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:29.546 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:29.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:29 smithi149 bash[28710]: audit 2023-12-08T23:07:28.315699+0000 mgr.smithi040.evuiyl (mgr.14180) 1042 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:30.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:29 smithi040 bash[24841]: audit 2023-12-08T23:07:28.315699+0000 mgr.smithi040.evuiyl (mgr.14180) 1042 : audit [DBG] from='client.15268 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:30.547 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:30.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:30 smithi149 bash[28710]: cluster 2023-12-08T23:07:29.315461+0000 mgr.smithi040.evuiyl (mgr.14180) 1043 : cluster [DBG] pgmap v697: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:31.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:30 smithi040 bash[24841]: cluster 2023-12-08T23:07:29.315461+0000 mgr.smithi040.evuiyl (mgr.14180) 1043 : cluster [DBG] pgmap v697: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:32 smithi040 bash[24841]: cluster 2023-12-08T23:07:31.316676+0000 mgr.smithi040.evuiyl (mgr.14180) 1044 : cluster [DBG] pgmap v698: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:32.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:32 smithi149 bash[28710]: cluster 2023-12-08T23:07:31.316676+0000 mgr.smithi040.evuiyl (mgr.14180) 1044 : cluster [DBG] pgmap v698: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:33.820 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:33.820 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:34.592 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:34.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:34 smithi149 bash[28710]: cluster 2023-12-08T23:07:33.317800+0000 mgr.smithi040.evuiyl (mgr.14180) 1045 : cluster [DBG] pgmap v699: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:35.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:34 smithi040 bash[24841]: cluster 2023-12-08T23:07:33.317800+0000 mgr.smithi040.evuiyl (mgr.14180) 1045 : cluster [DBG] pgmap v699: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:35.594 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:35.794 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:35 smithi040 bash[24841]: audit 2023-12-08T23:07:33.800708+0000 mgr.smithi040.evuiyl (mgr.14180) 1046 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:35.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:35 smithi149 bash[28710]: audit 2023-12-08T23:07:33.800708+0000 mgr.smithi040.evuiyl (mgr.14180) 1046 : audit [DBG] from='client.15272 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:36.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:36 smithi149 bash[28710]: cluster 2023-12-08T23:07:35.319143+0000 mgr.smithi040.evuiyl (mgr.14180) 1047 : cluster [DBG] pgmap v700: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:36.880 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:36 smithi040 bash[24841]: cluster 2023-12-08T23:07:35.319143+0000 mgr.smithi040.evuiyl (mgr.14180) 1047 : cluster [DBG] pgmap v700: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:38.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:38 smithi149 bash[28710]: cluster 2023-12-08T23:07:37.320291+0000 mgr.smithi040.evuiyl (mgr.14180) 1048 : cluster [DBG] pgmap v701: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:38.977 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:38.977 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:39.010 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:38 smithi040 bash[24841]: cluster 2023-12-08T23:07:37.320291+0000 mgr.smithi040.evuiyl (mgr.14180) 1048 : cluster [DBG] pgmap v701: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:39.772 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:40.773 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:40.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:40 smithi149 bash[28710]: audit 2023-12-08T23:07:38.959282+0000 mgr.smithi040.evuiyl (mgr.14180) 1049 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:40.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:40 smithi149 bash[28710]: cluster 2023-12-08T23:07:39.321590+0000 mgr.smithi040.evuiyl (mgr.14180) 1050 : cluster [DBG] pgmap v702: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:40.974 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:40 smithi040 bash[24841]: audit 2023-12-08T23:07:38.959282+0000 mgr.smithi040.evuiyl (mgr.14180) 1049 : audit [DBG] from='client.15276 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:40.974 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:40 smithi040 bash[24841]: cluster 2023-12-08T23:07:39.321590+0000 mgr.smithi040.evuiyl (mgr.14180) 1050 : cluster [DBG] pgmap v702: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:43.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:42 smithi040 bash[24841]: cluster 2023-12-08T23:07:41.322824+0000 mgr.smithi040.evuiyl (mgr.14180) 1051 : cluster [DBG] pgmap v703: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:43.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:42 smithi149 bash[28710]: cluster 2023-12-08T23:07:41.322824+0000 mgr.smithi040.evuiyl (mgr.14180) 1051 : cluster [DBG] pgmap v703: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:44.096 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:44.096 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:44.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:44 smithi040 bash[24841]: cluster 2023-12-08T23:07:43.323858+0000 mgr.smithi040.evuiyl (mgr.14180) 1052 : cluster [DBG] pgmap v704: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:44.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:44 smithi149 bash[28710]: cluster 2023-12-08T23:07:43.323858+0000 mgr.smithi040.evuiyl (mgr.14180) 1052 : cluster [DBG] pgmap v704: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:45.828 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:45.842 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:45 smithi040 bash[24841]: audit 2023-12-08T23:07:44.077291+0000 mgr.smithi040.evuiyl (mgr.14180) 1053 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:45 smithi149 bash[28710]: audit 2023-12-08T23:07:44.077291+0000 mgr.smithi040.evuiyl (mgr.14180) 1053 : audit [DBG] from='client.15280 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:46.934 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:46 smithi040 bash[24841]: cluster 2023-12-08T23:07:45.325159+0000 mgr.smithi040.evuiyl (mgr.14180) 1054 : cluster [DBG] pgmap v705: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:46 smithi149 bash[28710]: cluster 2023-12-08T23:07:45.325159+0000 mgr.smithi040.evuiyl (mgr.14180) 1054 : cluster [DBG] pgmap v705: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:49.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:48 smithi040 bash[24841]: cluster 2023-12-08T23:07:47.326324+0000 mgr.smithi040.evuiyl (mgr.14180) 1055 : cluster [DBG] pgmap v706: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:49.019 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:49.019 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:48 smithi149 bash[28710]: cluster 2023-12-08T23:07:47.326324+0000 mgr.smithi040.evuiyl (mgr.14180) 1055 : cluster [DBG] pgmap v706: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:49.815 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:50.817 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:51.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:50 smithi040 bash[24841]: audit 2023-12-08T23:07:49.006529+0000 mgr.smithi040.evuiyl (mgr.14180) 1056 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:51.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:50 smithi040 bash[24841]: cluster 2023-12-08T23:07:49.327206+0000 mgr.smithi040.evuiyl (mgr.14180) 1057 : cluster [DBG] pgmap v707: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:50 smithi149 bash[28710]: audit 2023-12-08T23:07:49.006529+0000 mgr.smithi040.evuiyl (mgr.14180) 1056 : audit [DBG] from='client.15284 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:50 smithi149 bash[28710]: cluster 2023-12-08T23:07:49.327206+0000 mgr.smithi040.evuiyl (mgr.14180) 1057 : cluster [DBG] pgmap v707: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:07:53.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:52 smithi040 bash[24841]: cluster 2023-12-08T23:07:51.328337+0000 mgr.smithi040.evuiyl (mgr.14180) 1058 : cluster [DBG] pgmap v708: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:52 smithi149 bash[28710]: cluster 2023-12-08T23:07:51.328337+0000 mgr.smithi040.evuiyl (mgr.14180) 1058 : cluster [DBG] pgmap v708: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:53 smithi040 bash[24841]: audit 2023-12-08T23:07:53.296870+0000 mon.smithi040 (mon.0) 929 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:07:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:53 smithi040 bash[24841]: audit 2023-12-08T23:07:53.575162+0000 mon.smithi040 (mon.0) 930 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:53 smithi149 bash[28710]: audit 2023-12-08T23:07:53.296870+0000 mon.smithi040 (mon.0) 929 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:07:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:53 smithi149 bash[28710]: audit 2023-12-08T23:07:53.575162+0000 mon.smithi040 (mon.0) 930 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:54.132 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:54.132 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:05:38.987781Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.jrmzis on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:54.940 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: cluster 2023-12-08T23:07:53.329540+0000 mgr.smithi040.evuiyl (mgr.14180) 1059 : cluster [DBG] pgmap v709: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:53.871926+0000 mon.smithi040 (mon.0) 931 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:53.873510+0000 mon.smithi040 (mon.0) 932 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:53.881572+0000 mon.smithi040 (mon.0) 933 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: cluster 2023-12-08T23:07:53.882359+0000 mgr.smithi040.evuiyl (mgr.14180) 1060 : cluster [DBG] pgmap v710: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:53.888505+0000 mon.smithi040 (mon.0) 934 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:53.903191+0000 mon.smithi040 (mon.0) 935 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: cephadm 2023-12-08T23:07:53.907942+0000 mgr.smithi040.evuiyl (mgr.14180) 1061 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.phkbhl on smithi149 2023-12-08T23:07:54.941 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:54 smithi040 bash[24841]: audit 2023-12-08T23:07:54.113655+0000 mgr.smithi040.evuiyl (mgr.14180) 1062 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:54.942 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: cluster 2023-12-08T23:07:53.329540+0000 mgr.smithi040.evuiyl (mgr.14180) 1059 : cluster [DBG] pgmap v709: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:53.871926+0000 mon.smithi040 (mon.0) 931 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:53.873510+0000 mon.smithi040 (mon.0) 932 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:53.881572+0000 mon.smithi040 (mon.0) 933 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: cluster 2023-12-08T23:07:53.882359+0000 mgr.smithi040.evuiyl (mgr.14180) 1060 : cluster [DBG] pgmap v710: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:53.888505+0000 mon.smithi040 (mon.0) 934 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:53.903191+0000 mon.smithi040 (mon.0) 935 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: cephadm 2023-12-08T23:07:53.907942+0000 mgr.smithi040.evuiyl (mgr.14180) 1061 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.phkbhl on smithi149 2023-12-08T23:07:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:54 smithi149 bash[28710]: audit 2023-12-08T23:07:54.113655+0000 mgr.smithi040.evuiyl (mgr.14180) 1062 : audit [DBG] from='client.15288 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:07:55.943 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:07:55.957 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:55 smithi040 bash[24841]: cluster 2023-12-08T23:07:54.879010+0000 mon.smithi040 (mon.0) 936 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:07:55.957 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:55 smithi040 bash[24841]: cluster 2023-12-08T23:07:54.879049+0000 mon.smithi040 (mon.0) 937 : cluster [INF] Cluster is now healthy 2023-12-08T23:07:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:55 smithi149 bash[28710]: cluster 2023-12-08T23:07:54.879010+0000 mon.smithi040 (mon.0) 936 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:07:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:55 smithi149 bash[28710]: cluster 2023-12-08T23:07:54.879049+0000 mon.smithi040 (mon.0) 937 : cluster [INF] Cluster is now healthy 2023-12-08T23:07:57.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:56 smithi040 bash[24841]: cluster 2023-12-08T23:07:55.883211+0000 mgr.smithi040.evuiyl (mgr.14180) 1063 : cluster [DBG] pgmap v711: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:07:57.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:56 smithi149 bash[28710]: cluster 2023-12-08T23:07:55.883211+0000 mgr.smithi040.evuiyl (mgr.14180) 1063 : cluster [DBG] pgmap v711: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:07:58.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:58 smithi149 bash[28710]: audit 2023-12-08T23:07:57.783480+0000 mon.smithi040 (mon.0) 938 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.phkbhl"}]: dispatch 2023-12-08T23:07:58.918 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:58 smithi040 bash[24841]: audit 2023-12-08T23:07:57.783480+0000 mon.smithi040 (mon.0) 938 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.phkbhl"}]: dispatch 2023-12-08T23:07:59.300 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:07:59.300 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:49.128307Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.djyidm on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-djyidm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.djyidm\nDeploy daemon haproxy.nfs.foo.smithi149.djyidm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.288478Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ucadvm on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ucadvm\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ucadvm\nDeploy daemon haproxy.nfs.foo.smithi040.ucadvm ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:06:53.290776Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hguznq on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: cephadm 2023-12-08T23:07:57.782492+0000 mgr.smithi040.evuiyl (mgr.14180) 1064 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: cephadm 2023-12-08T23:07:57.782991+0000 mgr.smithi040.evuiyl (mgr.14180) 1065 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: cephadm 2023-12-08T23:07:57.785311+0000 mgr.smithi040.evuiyl (mgr.14180) 1066 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: cephadm 2023-12-08T23:07:57.789731+0000 mgr.smithi040.evuiyl (mgr.14180) 1067 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.hpnuht on smithi040 2023-12-08T23:07:59.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:07:59 smithi040 bash[24841]: cluster 2023-12-08T23:07:57.883830+0000 mgr.smithi040.evuiyl (mgr.14180) 1068 : cluster [DBG] pgmap v712: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:07:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: cephadm 2023-12-08T23:07:57.782492+0000 mgr.smithi040.evuiyl (mgr.14180) 1064 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:07:59.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: cephadm 2023-12-08T23:07:57.782991+0000 mgr.smithi040.evuiyl (mgr.14180) 1065 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: cephadm 2023-12-08T23:07:57.785311+0000 mgr.smithi040.evuiyl (mgr.14180) 1066 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl 2023-12-08T23:07:59.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.phkbhl ... 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: cephadm 2023-12-08T23:07:57.789731+0000 mgr.smithi040.evuiyl (mgr.14180) 1067 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.hpnuht on smithi040 2023-12-08T23:07:59.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:07:59 smithi149 bash[28710]: cluster 2023-12-08T23:07:57.883830+0000 mgr.smithi040.evuiyl (mgr.14180) 1068 : cluster [DBG] pgmap v712: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:08:00.115 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:00.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:00 smithi149 bash[28710]: audit 2023-12-08T23:07:59.285794+0000 mgr.smithi040.evuiyl (mgr.14180) 1069 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:00 smithi040 bash[24841]: audit 2023-12-08T23:07:59.285794+0000 mgr.smithi040.evuiyl (mgr.14180) 1069 : audit [DBG] from='client.15292 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:01.116 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:01.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:01 smithi040 bash[24841]: cluster 2023-12-08T23:07:59.884878+0000 mgr.smithi040.evuiyl (mgr.14180) 1070 : cluster [DBG] pgmap v713: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:08:01.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:01 smithi149 bash[28710]: cluster 2023-12-08T23:07:59.884878+0000 mgr.smithi040.evuiyl (mgr.14180) 1070 : cluster [DBG] pgmap v713: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:08:02.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:02 smithi040 bash[24841]: audit 2023-12-08T23:08:02.128389+0000 mon.smithi040 (mon.0) 939 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.hpnuht"}]: dispatch 2023-12-08T23:08:02.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:02 smithi040 bash[24841]: audit 2023-12-08T23:08:02.443437+0000 mon.smithi040 (mon.0) 940 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:02.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:02 smithi149 bash[28710]: audit 2023-12-08T23:08:02.128389+0000 mon.smithi040 (mon.0) 939 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.hpnuht"}]: dispatch 2023-12-08T23:08:02.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:02 smithi149 bash[28710]: audit 2023-12-08T23:08:02.443437+0000 mon.smithi040 (mon.0) 940 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cluster 2023-12-08T23:08:01.885477+0000 mgr.smithi040.evuiyl (mgr.14180) 1071 : cluster [DBG] pgmap v714: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:08:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cephadm 2023-12-08T23:08:02.127544+0000 mgr.smithi040.evuiyl (mgr.14180) 1072 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:08:03.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cephadm 2023-12-08T23:08:02.127864+0000 mgr.smithi040.evuiyl (mgr.14180) 1073 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cephadm 2023-12-08T23:08:02.129435+0000 mgr.smithi040.evuiyl (mgr.14180) 1074 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cephadm 2023-12-08T23:08:02.131784+0000 mgr.smithi040.evuiyl (mgr.14180) 1075 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cephadm 2023-12-08T23:08:02.133363+0000 mgr.smithi040.evuiyl (mgr.14180) 1076 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cluster 2023-12-08T23:08:02.134019+0000 mgr.smithi040.evuiyl (mgr.14180) 1077 : cluster [DBG] pgmap v715: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 232 B/s rd, 0 op/s 2023-12-08T23:08:03.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:03 smithi040 bash[24841]: cluster 2023-12-08T23:08:02.532724+0000 mon.smithi040 (mon.0) 941 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:08:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cluster 2023-12-08T23:08:01.885477+0000 mgr.smithi040.evuiyl (mgr.14180) 1071 : cluster [DBG] pgmap v714: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:08:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cephadm 2023-12-08T23:08:02.127544+0000 mgr.smithi040.evuiyl (mgr.14180) 1072 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:08:03.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cephadm 2023-12-08T23:08:02.127864+0000 mgr.smithi040.evuiyl (mgr.14180) 1073 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cephadm 2023-12-08T23:08:02.129435+0000 mgr.smithi040.evuiyl (mgr.14180) 1074 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.hpnuht ... 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:08:03.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cephadm 2023-12-08T23:08:02.131784+0000 mgr.smithi040.evuiyl (mgr.14180) 1075 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:08:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cephadm 2023-12-08T23:08:02.133363+0000 mgr.smithi040.evuiyl (mgr.14180) 1076 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:08:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cluster 2023-12-08T23:08:02.134019+0000 mgr.smithi040.evuiyl (mgr.14180) 1077 : cluster [DBG] pgmap v715: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 232 B/s rd, 0 op/s 2023-12-08T23:08:03.818 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:03 smithi149 bash[28710]: cluster 2023-12-08T23:08:02.532724+0000 mon.smithi040 (mon.0) 941 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:08:04.560 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:04.560 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:05.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:05.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:05 smithi040 bash[24841]: cluster 2023-12-08T23:08:04.135153+0000 mgr.smithi040.evuiyl (mgr.14180) 1078 : cluster [DBG] pgmap v716: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:05.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:05 smithi040 bash[24841]: audit 2023-12-08T23:08:04.540486+0000 mgr.smithi040.evuiyl (mgr.14180) 1079 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:05.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:05 smithi040 bash[24841]: audit 2023-12-08T23:08:05.044310+0000 mon.smithi040 (mon.0) 942 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:05.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:05 smithi149 bash[28710]: cluster 2023-12-08T23:08:04.135153+0000 mgr.smithi040.evuiyl (mgr.14180) 1078 : cluster [DBG] pgmap v716: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:05 smithi149 bash[28710]: audit 2023-12-08T23:08:04.540486+0000 mgr.smithi040.evuiyl (mgr.14180) 1079 : audit [DBG] from='client.15296 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:05.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:05 smithi149 bash[28710]: audit 2023-12-08T23:08:05.044310+0000 mon.smithi040 (mon.0) 942 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:06.379 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:07.754 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:07 smithi040 bash[24841]: cluster 2023-12-08T23:08:06.136326+0000 mgr.smithi040.evuiyl (mgr.14180) 1080 : cluster [DBG] pgmap v717: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:08.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:07 smithi149 bash[28710]: cluster 2023-12-08T23:08:06.136326+0000 mgr.smithi040.evuiyl (mgr.14180) 1080 : cluster [DBG] pgmap v717: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:09.505 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:09.505 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:10.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:09 smithi040 bash[24841]: cluster 2023-12-08T23:08:08.137462+0000 mgr.smithi040.evuiyl (mgr.14180) 1081 : cluster [DBG] pgmap v718: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:09 smithi149 bash[28710]: cluster 2023-12-08T23:08:08.137462+0000 mgr.smithi040.evuiyl (mgr.14180) 1081 : cluster [DBG] pgmap v718: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:10.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:11.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:10 smithi040 bash[24841]: audit 2023-12-08T23:08:09.485228+0000 mgr.smithi040.evuiyl (mgr.14180) 1082 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:11.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:10 smithi149 bash[28710]: audit 2023-12-08T23:08:09.485228+0000 mgr.smithi040.evuiyl (mgr.14180) 1082 : audit [DBG] from='client.15300 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:11.303 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:11.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:11 smithi040 bash[24841]: cluster 2023-12-08T23:08:10.138747+0000 mgr.smithi040.evuiyl (mgr.14180) 1083 : cluster [DBG] pgmap v719: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:11 smithi149 bash[28710]: cluster 2023-12-08T23:08:10.138747+0000 mgr.smithi040.evuiyl (mgr.14180) 1083 : cluster [DBG] pgmap v719: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:13 smithi040 bash[24841]: cluster 2023-12-08T23:08:12.139890+0000 mgr.smithi040.evuiyl (mgr.14180) 1084 : cluster [DBG] pgmap v720: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:13 smithi149 bash[28710]: cluster 2023-12-08T23:08:12.139890+0000 mgr.smithi040.evuiyl (mgr.14180) 1084 : cluster [DBG] pgmap v720: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:08:14.657 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:14.658 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:15.416 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:15.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:15 smithi040 bash[24841]: cluster 2023-12-08T23:08:14.141017+0000 mgr.smithi040.evuiyl (mgr.14180) 1085 : cluster [DBG] pgmap v721: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:15 smithi149 bash[28710]: cluster 2023-12-08T23:08:14.141017+0000 mgr.smithi040.evuiyl (mgr.14180) 1085 : cluster [DBG] pgmap v721: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:16.417 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:16.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:16 smithi040 bash[24841]: audit 2023-12-08T23:08:14.644449+0000 mgr.smithi040.evuiyl (mgr.14180) 1086 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:16 smithi149 bash[28710]: audit 2023-12-08T23:08:14.644449+0000 mgr.smithi040.evuiyl (mgr.14180) 1086 : audit [DBG] from='client.15304 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:17 smithi040 bash[24841]: cluster 2023-12-08T23:08:16.142198+0000 mgr.smithi040.evuiyl (mgr.14180) 1087 : cluster [DBG] pgmap v722: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:17 smithi040 bash[24841]: audit 2023-12-08T23:08:17.444680+0000 mon.smithi040 (mon.0) 943 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:18.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:17 smithi149 bash[28710]: cluster 2023-12-08T23:08:16.142198+0000 mgr.smithi040.evuiyl (mgr.14180) 1087 : cluster [DBG] pgmap v722: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:18.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:17 smithi149 bash[28710]: audit 2023-12-08T23:08:17.444680+0000 mon.smithi040 (mon.0) 943 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:08:19.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:18 smithi040 bash[24841]: cluster 2023-12-08T23:08:18.143317+0000 mgr.smithi040.evuiyl (mgr.14180) 1088 : cluster [DBG] pgmap v723: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:18 smithi149 bash[28710]: cluster 2023-12-08T23:08:18.143317+0000 mgr.smithi040.evuiyl (mgr.14180) 1088 : cluster [DBG] pgmap v723: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:19.671 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:19.671 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:20.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:21.490 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:21.503 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:21 smithi040 bash[24841]: audit 2023-12-08T23:08:19.650850+0000 mgr.smithi040.evuiyl (mgr.14180) 1089 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:21.504 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:21 smithi040 bash[24841]: cluster 2023-12-08T23:08:20.144627+0000 mgr.smithi040.evuiyl (mgr.14180) 1090 : cluster [DBG] pgmap v724: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:21.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:21 smithi149 bash[28710]: audit 2023-12-08T23:08:19.650850+0000 mgr.smithi040.evuiyl (mgr.14180) 1089 : audit [DBG] from='client.15308 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:21.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:21 smithi149 bash[28710]: cluster 2023-12-08T23:08:20.144627+0000 mgr.smithi040.evuiyl (mgr.14180) 1090 : cluster [DBG] pgmap v724: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:23.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:23 smithi149 bash[28710]: cluster 2023-12-08T23:08:22.145808+0000 mgr.smithi040.evuiyl (mgr.14180) 1091 : cluster [DBG] pgmap v725: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:24.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:23 smithi040 bash[24841]: cluster 2023-12-08T23:08:22.145808+0000 mgr.smithi040.evuiyl (mgr.14180) 1091 : cluster [DBG] pgmap v725: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:24.764 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:24.764 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:25.510 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:25.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:25 smithi040 bash[24841]: cluster 2023-12-08T23:08:24.146743+0000 mgr.smithi040.evuiyl (mgr.14180) 1092 : cluster [DBG] pgmap v726: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:25.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:25 smithi149 bash[28710]: cluster 2023-12-08T23:08:24.146743+0000 mgr.smithi040.evuiyl (mgr.14180) 1092 : cluster [DBG] pgmap v726: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:26.511 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:26.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:26 smithi149 bash[28710]: audit 2023-12-08T23:08:24.744987+0000 mgr.smithi040.evuiyl (mgr.14180) 1093 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:26 smithi040 bash[24841]: audit 2023-12-08T23:08:24.744987+0000 mgr.smithi040.evuiyl (mgr.14180) 1093 : audit [DBG] from='client.15312 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:27.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:27 smithi149 bash[28710]: cluster 2023-12-08T23:08:26.148043+0000 mgr.smithi040.evuiyl (mgr.14180) 1094 : cluster [DBG] pgmap v727: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:27.837 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:27 smithi040 bash[24841]: cluster 2023-12-08T23:08:26.148043+0000 mgr.smithi040.evuiyl (mgr.14180) 1094 : cluster [DBG] pgmap v727: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:29.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:29 smithi040 bash[24841]: cluster 2023-12-08T23:08:28.148787+0000 mgr.smithi040.evuiyl (mgr.14180) 1095 : cluster [DBG] pgmap v728: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:29.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:29 smithi149 bash[28710]: cluster 2023-12-08T23:08:28.148787+0000 mgr.smithi040.evuiyl (mgr.14180) 1095 : cluster [DBG] pgmap v728: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:29.906 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:29.906 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:30.717 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:31.782 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:31.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:31 smithi149 bash[28710]: audit 2023-12-08T23:08:29.887920+0000 mgr.smithi040.evuiyl (mgr.14180) 1096 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:31.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:31 smithi149 bash[28710]: cluster 2023-12-08T23:08:30.149819+0000 mgr.smithi040.evuiyl (mgr.14180) 1097 : cluster [DBG] pgmap v729: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:31.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:31 smithi040 bash[24841]: audit 2023-12-08T23:08:29.887920+0000 mgr.smithi040.evuiyl (mgr.14180) 1096 : audit [DBG] from='client.15316 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:31.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:31 smithi040 bash[24841]: cluster 2023-12-08T23:08:30.149819+0000 mgr.smithi040.evuiyl (mgr.14180) 1097 : cluster [DBG] pgmap v729: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:33.869 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:33 smithi040 bash[24841]: cluster 2023-12-08T23:08:32.150601+0000 mgr.smithi040.evuiyl (mgr.14180) 1098 : cluster [DBG] pgmap v730: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:33 smithi149 bash[28710]: cluster 2023-12-08T23:08:32.150601+0000 mgr.smithi040.evuiyl (mgr.14180) 1098 : cluster [DBG] pgmap v730: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:35.134 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:35.135 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:35.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:35 smithi040 bash[24841]: cluster 2023-12-08T23:08:34.151720+0000 mgr.smithi040.evuiyl (mgr.14180) 1099 : cluster [DBG] pgmap v731: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:35.894 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:36.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:35 smithi149 bash[28710]: cluster 2023-12-08T23:08:34.151720+0000 mgr.smithi040.evuiyl (mgr.14180) 1099 : cluster [DBG] pgmap v731: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:36.895 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:36.910 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:36 smithi040 bash[24841]: audit 2023-12-08T23:08:35.116563+0000 mgr.smithi040.evuiyl (mgr.14180) 1100 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:37.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:36 smithi149 bash[28710]: audit 2023-12-08T23:08:35.116563+0000 mgr.smithi040.evuiyl (mgr.14180) 1100 : audit [DBG] from='client.15320 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:37.902 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:37 smithi040 bash[24841]: cluster 2023-12-08T23:08:36.152961+0000 mgr.smithi040.evuiyl (mgr.14180) 1101 : cluster [DBG] pgmap v732: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:38.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:37 smithi149 bash[28710]: cluster 2023-12-08T23:08:36.152961+0000 mgr.smithi040.evuiyl (mgr.14180) 1101 : cluster [DBG] pgmap v732: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:40.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:39 smithi040 bash[24841]: cluster 2023-12-08T23:08:38.154110+0000 mgr.smithi040.evuiyl (mgr.14180) 1102 : cluster [DBG] pgmap v733: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:40.024 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:40.024 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:39 smithi149 bash[28710]: cluster 2023-12-08T23:08:38.154110+0000 mgr.smithi040.evuiyl (mgr.14180) 1102 : cluster [DBG] pgmap v733: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:40.869 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:41.870 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:41.882 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:41 smithi040 bash[24841]: audit 2023-12-08T23:08:40.011171+0000 mgr.smithi040.evuiyl (mgr.14180) 1103 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:41.882 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:41 smithi040 bash[24841]: cluster 2023-12-08T23:08:40.155526+0000 mgr.smithi040.evuiyl (mgr.14180) 1104 : cluster [DBG] pgmap v734: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:42.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:41 smithi149 bash[28710]: audit 2023-12-08T23:08:40.011171+0000 mgr.smithi040.evuiyl (mgr.14180) 1103 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:41 smithi149 bash[28710]: cluster 2023-12-08T23:08:40.155526+0000 mgr.smithi040.evuiyl (mgr.14180) 1104 : cluster [DBG] pgmap v734: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:44.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:43 smithi040 bash[24841]: cluster 2023-12-08T23:08:42.156263+0000 mgr.smithi040.evuiyl (mgr.14180) 1105 : cluster [DBG] pgmap v735: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:43 smithi149 bash[28710]: cluster 2023-12-08T23:08:42.156263+0000 mgr.smithi040.evuiyl (mgr.14180) 1105 : cluster [DBG] pgmap v735: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:45.142 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:45.142 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:45.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:45 smithi040 bash[24841]: cluster 2023-12-08T23:08:44.157103+0000 mgr.smithi040.evuiyl (mgr.14180) 1106 : cluster [DBG] pgmap v736: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:45.961 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:45 smithi149 bash[28710]: cluster 2023-12-08T23:08:44.157103+0000 mgr.smithi040.evuiyl (mgr.14180) 1106 : cluster [DBG] pgmap v736: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:46.963 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:46.977 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:46 smithi040 bash[24841]: audit 2023-12-08T23:08:45.123163+0000 mgr.smithi040.evuiyl (mgr.14180) 1107 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:46 smithi149 bash[28710]: audit 2023-12-08T23:08:45.123163+0000 mgr.smithi040.evuiyl (mgr.14180) 1107 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:48.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:47 smithi040 bash[24841]: cluster 2023-12-08T23:08:46.158272+0000 mgr.smithi040.evuiyl (mgr.14180) 1108 : cluster [DBG] pgmap v737: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:47 smithi149 bash[28710]: cluster 2023-12-08T23:08:46.158272+0000 mgr.smithi040.evuiyl (mgr.14180) 1108 : cluster [DBG] pgmap v737: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:48.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:48 smithi040 bash[24841]: cluster 2023-12-08T23:08:48.159187+0000 mgr.smithi040.evuiyl (mgr.14180) 1109 : cluster [DBG] pgmap v738: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:48 smithi149 bash[28710]: cluster 2023-12-08T23:08:48.159187+0000 mgr.smithi040.evuiyl (mgr.14180) 1109 : cluster [DBG] pgmap v738: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:50.478 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:50.478 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:51.224 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:51.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:51 smithi040 bash[24841]: cluster 2023-12-08T23:08:50.160485+0000 mgr.smithi040.evuiyl (mgr.14180) 1110 : cluster [DBG] pgmap v739: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:51.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:51 smithi040 bash[24841]: audit 2023-12-08T23:08:50.462684+0000 mgr.smithi040.evuiyl (mgr.14180) 1111 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:51.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:51 smithi149 bash[28710]: cluster 2023-12-08T23:08:50.160485+0000 mgr.smithi040.evuiyl (mgr.14180) 1110 : cluster [DBG] pgmap v739: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:08:51.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:51 smithi149 bash[28710]: audit 2023-12-08T23:08:50.462684+0000 mgr.smithi040.evuiyl (mgr.14180) 1111 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:52.226 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:53.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:53 smithi149 bash[28710]: cluster 2023-12-08T23:08:52.161681+0000 mgr.smithi040.evuiyl (mgr.14180) 1112 : cluster [DBG] pgmap v740: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:54.022 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:53 smithi040 bash[24841]: cluster 2023-12-08T23:08:52.161681+0000 mgr.smithi040.evuiyl (mgr.14180) 1112 : cluster [DBG] pgmap v740: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:55.487 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:08:55.487 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:08:55.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:55 smithi149 bash[28710]: cluster 2023-12-08T23:08:54.162920+0000 mgr.smithi040.evuiyl (mgr.14180) 1113 : cluster [DBG] pgmap v741: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:56.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:55 smithi040 bash[24841]: cluster 2023-12-08T23:08:54.162920+0000 mgr.smithi040.evuiyl (mgr.14180) 1113 : cluster [DBG] pgmap v741: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:56.303 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:08:56.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:56 smithi149 bash[28710]: audit 2023-12-08T23:08:55.468800+0000 mgr.smithi040.evuiyl (mgr.14180) 1114 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:57.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:56 smithi040 bash[24841]: audit 2023-12-08T23:08:55.468800+0000 mgr.smithi040.evuiyl (mgr.14180) 1114 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:08:57.304 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:08:57.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:57 smithi040 bash[24841]: cluster 2023-12-08T23:08:56.164141+0000 mgr.smithi040.evuiyl (mgr.14180) 1115 : cluster [DBG] pgmap v742: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:57.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:57 smithi149 bash[28710]: cluster 2023-12-08T23:08:56.164141+0000 mgr.smithi040.evuiyl (mgr.14180) 1115 : cluster [DBG] pgmap v742: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:59.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:08:59 smithi040 bash[24841]: cluster 2023-12-08T23:08:58.164881+0000 mgr.smithi040.evuiyl (mgr.14180) 1116 : cluster [DBG] pgmap v743: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:08:59.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:08:59 smithi149 bash[28710]: cluster 2023-12-08T23:08:58.164881+0000 mgr.smithi040.evuiyl (mgr.14180) 1116 : cluster [DBG] pgmap v743: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:00.466 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:00.466 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:01.309 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:01.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:01 smithi040 bash[24841]: cluster 2023-12-08T23:09:00.166174+0000 mgr.smithi040.evuiyl (mgr.14180) 1117 : cluster [DBG] pgmap v744: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:01.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:01 smithi040 bash[24841]: audit 2023-12-08T23:09:00.448537+0000 mgr.smithi040.evuiyl (mgr.14180) 1118 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:01 smithi149 bash[28710]: cluster 2023-12-08T23:09:00.166174+0000 mgr.smithi040.evuiyl (mgr.14180) 1117 : cluster [DBG] pgmap v744: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:01 smithi149 bash[28710]: audit 2023-12-08T23:09:00.448537+0000 mgr.smithi040.evuiyl (mgr.14180) 1118 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:02.310 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.137234+0000 mon.smithi040 (mon.0) 944 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.449207+0000 mon.smithi040 (mon.0) 945 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.450603+0000 mon.smithi040 (mon.0) 946 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.465834+0000 mon.smithi040 (mon.0) 947 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.471590+0000 mon.smithi040 (mon.0) 948 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:09:03.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:02 smithi040 bash[24841]: audit 2023-12-08T23:09:02.485857+0000 mon.smithi040 (mon.0) 949 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:03.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.137234+0000 mon.smithi040 (mon.0) 944 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:09:03.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.449207+0000 mon.smithi040 (mon.0) 945 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:09:03.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.450603+0000 mon.smithi040 (mon.0) 946 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:09:03.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.465834+0000 mon.smithi040 (mon.0) 947 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:03.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.471590+0000 mon.smithi040 (mon.0) 948 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:09:03.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:02 smithi149 bash[28710]: audit 2023-12-08T23:09:02.485857+0000 mon.smithi040 (mon.0) 949 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:03 smithi040 bash[24841]: cluster 2023-12-08T23:09:02.167144+0000 mgr.smithi040.evuiyl (mgr.14180) 1119 : cluster [DBG] pgmap v745: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:03 smithi040 bash[24841]: cluster 2023-12-08T23:09:02.466753+0000 mgr.smithi040.evuiyl (mgr.14180) 1120 : cluster [DBG] pgmap v746: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:03 smithi040 bash[24841]: cephadm 2023-12-08T23:09:02.514672+0000 mgr.smithi040.evuiyl (mgr.14180) 1121 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.ipbktw on smithi149 2023-12-08T23:09:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:03 smithi040 bash[24841]: cluster 2023-12-08T23:09:02.557495+0000 mon.smithi040 (mon.0) 950 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:09:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:03 smithi040 bash[24841]: cluster 2023-12-08T23:09:02.557568+0000 mon.smithi040 (mon.0) 951 : cluster [INF] Cluster is now healthy 2023-12-08T23:09:04.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:03 smithi149 bash[28710]: cluster 2023-12-08T23:09:02.167144+0000 mgr.smithi040.evuiyl (mgr.14180) 1119 : cluster [DBG] pgmap v745: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:04.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:03 smithi149 bash[28710]: cluster 2023-12-08T23:09:02.466753+0000 mgr.smithi040.evuiyl (mgr.14180) 1120 : cluster [DBG] pgmap v746: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:04.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:03 smithi149 bash[28710]: cephadm 2023-12-08T23:09:02.514672+0000 mgr.smithi040.evuiyl (mgr.14180) 1121 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.ipbktw on smithi149 2023-12-08T23:09:04.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:03 smithi149 bash[28710]: cluster 2023-12-08T23:09:02.557495+0000 mon.smithi040 (mon.0) 950 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:09:04.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:03 smithi149 bash[28710]: cluster 2023-12-08T23:09:02.557568+0000 mon.smithi040 (mon.0) 951 : cluster [INF] Cluster is now healthy 2023-12-08T23:09:05.707 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:05.707 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:06:53.292603Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ekbvry on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:07:57.784932Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.phkbhl on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-phkbhl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.phkbhl\nDeploy daemon haproxy.nfs.foo.smithi149.phkbhl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.129298Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.hpnuht on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-hpnuht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.hpnuht\nDeploy daemon haproxy.nfs.foo.smithi040.hpnuht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:08:02.131671Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.untque on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:05.974 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:05 smithi149 bash[28710]: cluster 2023-12-08T23:09:04.467737+0000 mgr.smithi040.evuiyl (mgr.14180) 1122 : cluster [DBG] pgmap v747: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:05.987 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:05 smithi040 bash[24841]: cluster 2023-12-08T23:09:04.467737+0000 mgr.smithi040.evuiyl (mgr.14180) 1122 : cluster [DBG] pgmap v747: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:06.563 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:06.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:06 smithi149 bash[28710]: audit 2023-12-08T23:09:06.540191+0000 mon.smithi040 (mon.0) 952 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.ipbktw"}]: dispatch 2023-12-08T23:09:07.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:06 smithi040 bash[24841]: audit 2023-12-08T23:09:06.540191+0000 mon.smithi040 (mon.0) 952 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.ipbktw"}]: dispatch 2023-12-08T23:09:07.564 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: audit 2023-12-08T23:09:05.688397+0000 mgr.smithi040.evuiyl (mgr.14180) 1123 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: cluster 2023-12-08T23:09:06.468634+0000 mgr.smithi040.evuiyl (mgr.14180) 1124 : cluster [DBG] pgmap v748: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: cephadm 2023-12-08T23:09:06.538908+0000 mgr.smithi040.evuiyl (mgr.14180) 1125 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: cephadm 2023-12-08T23:09:06.539462+0000 mgr.smithi040.evuiyl (mgr.14180) 1126 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: cephadm 2023-12-08T23:09:06.542046+0000 mgr.smithi040.evuiyl (mgr.14180) 1127 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:07 smithi040 bash[24841]: cephadm 2023-12-08T23:09:06.546772+0000 mgr.smithi040.evuiyl (mgr.14180) 1128 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.eytbrn on smithi040 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: audit 2023-12-08T23:09:05.688397+0000 mgr.smithi040.evuiyl (mgr.14180) 1123 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: cluster 2023-12-08T23:09:06.468634+0000 mgr.smithi040.evuiyl (mgr.14180) 1124 : cluster [DBG] pgmap v748: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: cephadm 2023-12-08T23:09:06.538908+0000 mgr.smithi040.evuiyl (mgr.14180) 1125 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: cephadm 2023-12-08T23:09:06.539462+0000 mgr.smithi040.evuiyl (mgr.14180) 1126 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: cephadm 2023-12-08T23:09:06.542046+0000 mgr.smithi040.evuiyl (mgr.14180) 1127 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ipbktw ... 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:08.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:07 smithi149 bash[28710]: cephadm 2023-12-08T23:09:06.546772+0000 mgr.smithi040.evuiyl (mgr.14180) 1128 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.eytbrn on smithi040 2023-12-08T23:09:09.930 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:09 smithi040 bash[24841]: cluster 2023-12-08T23:09:08.469579+0000 mgr.smithi040.evuiyl (mgr.14180) 1129 : cluster [DBG] pgmap v749: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:09 smithi149 bash[28710]: cluster 2023-12-08T23:09:08.469579+0000 mgr.smithi040.evuiyl (mgr.14180) 1129 : cluster [DBG] pgmap v749: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:10.674 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:10 smithi040 bash[24841]: audit 2023-12-08T23:09:10.495892+0000 mon.smithi040 (mon.0) 953 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.eytbrn"}]: dispatch 2023-12-08T23:09:11.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:10 smithi149 bash[28710]: audit 2023-12-08T23:09:10.495892+0000 mon.smithi040 (mon.0) 953 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.eytbrn"}]: dispatch 2023-12-08T23:09:11.091 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:11.091 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cluster 2023-12-08T23:09:10.470239+0000 mgr.smithi040.evuiyl (mgr.14180) 1130 : cluster [DBG] pgmap v750: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cephadm 2023-12-08T23:09:10.494841+0000 mgr.smithi040.evuiyl (mgr.14180) 1131 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cephadm 2023-12-08T23:09:10.495280+0000 mgr.smithi040.evuiyl (mgr.14180) 1132 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cephadm 2023-12-08T23:09:10.497279+0000 mgr.smithi040.evuiyl (mgr.14180) 1133 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:11.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:11.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cephadm 2023-12-08T23:09:10.500463+0000 mgr.smithi040.evuiyl (mgr.14180) 1134 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:09:11.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cephadm 2023-12-08T23:09:10.502678+0000 mgr.smithi040.evuiyl (mgr.14180) 1135 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:09:11.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cluster 2023-12-08T23:09:10.503478+0000 mgr.smithi040.evuiyl (mgr.14180) 1136 : cluster [DBG] pgmap v751: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 245 B/s rd, 0 op/s 2023-12-08T23:09:11.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:11 smithi040 bash[24841]: cluster 2023-12-08T23:09:10.593278+0000 mon.smithi040 (mon.0) 954 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:09:11.984 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cluster 2023-12-08T23:09:10.470239+0000 mgr.smithi040.evuiyl (mgr.14180) 1130 : cluster [DBG] pgmap v750: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cephadm 2023-12-08T23:09:10.494841+0000 mgr.smithi040.evuiyl (mgr.14180) 1131 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cephadm 2023-12-08T23:09:10.495280+0000 mgr.smithi040.evuiyl (mgr.14180) 1132 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cephadm 2023-12-08T23:09:10.497279+0000 mgr.smithi040.evuiyl (mgr.14180) 1133 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.eytbrn ... 2023-12-08T23:09:12.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cephadm 2023-12-08T23:09:10.500463+0000 mgr.smithi040.evuiyl (mgr.14180) 1134 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cephadm 2023-12-08T23:09:10.502678+0000 mgr.smithi040.evuiyl (mgr.14180) 1135 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cluster 2023-12-08T23:09:10.503478+0000 mgr.smithi040.evuiyl (mgr.14180) 1136 : cluster [DBG] pgmap v751: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 245 B/s rd, 0 op/s 2023-12-08T23:09:12.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:11 smithi149 bash[28710]: cluster 2023-12-08T23:09:10.593278+0000 mon.smithi040 (mon.0) 954 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:09:12.984 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:12.998 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:12 smithi040 bash[24841]: audit 2023-12-08T23:09:11.077517+0000 mgr.smithi040.evuiyl (mgr.14180) 1137 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:13.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:12 smithi149 bash[28710]: audit 2023-12-08T23:09:11.077517+0000 mgr.smithi040.evuiyl (mgr.14180) 1137 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:14.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:13 smithi040 bash[24841]: cluster 2023-12-08T23:09:12.504465+0000 mgr.smithi040.evuiyl (mgr.14180) 1138 : cluster [DBG] pgmap v752: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:13 smithi149 bash[28710]: cluster 2023-12-08T23:09:12.504465+0000 mgr.smithi040.evuiyl (mgr.14180) 1138 : cluster [DBG] pgmap v752: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:14.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:14 smithi040 bash[24841]: cluster 2023-12-08T23:09:14.505414+0000 mgr.smithi040.evuiyl (mgr.14180) 1139 : cluster [DBG] pgmap v753: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:15.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:14 smithi149 bash[28710]: cluster 2023-12-08T23:09:14.505414+0000 mgr.smithi040.evuiyl (mgr.14180) 1139 : cluster [DBG] pgmap v753: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:16.155 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:16.156 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:16.411 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:16 smithi040 bash[24841]: audit 2023-12-08T23:09:15.094143+0000 mon.smithi040 (mon.0) 955 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:16.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:16 smithi149 bash[28710]: audit 2023-12-08T23:09:15.094143+0000 mon.smithi040 (mon.0) 955 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:09:16.933 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:17.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:17 smithi040 bash[24841]: audit 2023-12-08T23:09:16.136968+0000 mgr.smithi040.evuiyl (mgr.14180) 1140 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:17.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:17 smithi040 bash[24841]: cluster 2023-12-08T23:09:16.506031+0000 mgr.smithi040.evuiyl (mgr.14180) 1141 : cluster [DBG] pgmap v754: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:17.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:17 smithi149 bash[28710]: audit 2023-12-08T23:09:16.136968+0000 mgr.smithi040.evuiyl (mgr.14180) 1140 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:17.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:17 smithi149 bash[28710]: cluster 2023-12-08T23:09:16.506031+0000 mgr.smithi040.evuiyl (mgr.14180) 1141 : cluster [DBG] pgmap v754: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:17.934 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:19.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:19 smithi040 bash[24841]: cluster 2023-12-08T23:09:18.507198+0000 mgr.smithi040.evuiyl (mgr.14180) 1142 : cluster [DBG] pgmap v755: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:19.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:19 smithi149 bash[28710]: cluster 2023-12-08T23:09:18.507198+0000 mgr.smithi040.evuiyl (mgr.14180) 1142 : cluster [DBG] pgmap v755: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:21.214 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:21.215 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:21.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:21 smithi040 bash[24841]: cluster 2023-12-08T23:09:20.508376+0000 mgr.smithi040.evuiyl (mgr.14180) 1143 : cluster [DBG] pgmap v756: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:21.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:21 smithi149 bash[28710]: cluster 2023-12-08T23:09:20.508376+0000 mgr.smithi040.evuiyl (mgr.14180) 1143 : cluster [DBG] pgmap v756: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:09:22.033 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:22.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:22 smithi149 bash[28710]: audit 2023-12-08T23:09:21.200870+0000 mgr.smithi040.evuiyl (mgr.14180) 1144 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:22 smithi040 bash[24841]: audit 2023-12-08T23:09:21.200870+0000 mgr.smithi040.evuiyl (mgr.14180) 1144 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:23.034 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:24.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:23 smithi040 bash[24841]: cluster 2023-12-08T23:09:22.509549+0000 mgr.smithi040.evuiyl (mgr.14180) 1145 : cluster [DBG] pgmap v757: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:23 smithi149 bash[28710]: cluster 2023-12-08T23:09:22.509549+0000 mgr.smithi040.evuiyl (mgr.14180) 1145 : cluster [DBG] pgmap v757: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:26.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:25 smithi040 bash[24841]: cluster 2023-12-08T23:09:24.510304+0000 mgr.smithi040.evuiyl (mgr.14180) 1146 : cluster [DBG] pgmap v758: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:25 smithi149 bash[28710]: cluster 2023-12-08T23:09:24.510304+0000 mgr.smithi040.evuiyl (mgr.14180) 1146 : cluster [DBG] pgmap v758: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:26.122 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:26.123 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:26.953 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:27.954 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:27.967 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:27 smithi040 bash[24841]: audit 2023-12-08T23:09:26.107928+0000 mgr.smithi040.evuiyl (mgr.14180) 1147 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:27.967 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:27 smithi040 bash[24841]: cluster 2023-12-08T23:09:26.511594+0000 mgr.smithi040.evuiyl (mgr.14180) 1148 : cluster [DBG] pgmap v759: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:28.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:27 smithi149 bash[28710]: audit 2023-12-08T23:09:26.107928+0000 mgr.smithi040.evuiyl (mgr.14180) 1147 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:28.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:27 smithi149 bash[28710]: cluster 2023-12-08T23:09:26.511594+0000 mgr.smithi040.evuiyl (mgr.14180) 1148 : cluster [DBG] pgmap v759: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:29.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:29 smithi040 bash[24841]: cluster 2023-12-08T23:09:28.512840+0000 mgr.smithi040.evuiyl (mgr.14180) 1149 : cluster [DBG] pgmap v760: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:30.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:29 smithi149 bash[28710]: cluster 2023-12-08T23:09:28.512840+0000 mgr.smithi040.evuiyl (mgr.14180) 1149 : cluster [DBG] pgmap v760: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:31.117 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:31.117 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:31.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:31 smithi040 bash[24841]: cluster 2023-12-08T23:09:30.514071+0000 mgr.smithi040.evuiyl (mgr.14180) 1150 : cluster [DBG] pgmap v761: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:31.872 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:31 smithi149 bash[28710]: cluster 2023-12-08T23:09:30.514071+0000 mgr.smithi040.evuiyl (mgr.14180) 1150 : cluster [DBG] pgmap v761: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:32.874 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:32.887 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:32 smithi040 bash[24841]: audit 2023-12-08T23:09:31.097259+0000 mgr.smithi040.evuiyl (mgr.14180) 1151 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:32 smithi149 bash[28710]: audit 2023-12-08T23:09:31.097259+0000 mgr.smithi040.evuiyl (mgr.14180) 1151 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:33.979 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:33 smithi040 bash[24841]: cluster 2023-12-08T23:09:32.515222+0000 mgr.smithi040.evuiyl (mgr.14180) 1152 : cluster [DBG] pgmap v762: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:33 smithi149 bash[28710]: cluster 2023-12-08T23:09:32.515222+0000 mgr.smithi040.evuiyl (mgr.14180) 1152 : cluster [DBG] pgmap v762: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:36.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:35 smithi040 bash[24841]: cluster 2023-12-08T23:09:34.516477+0000 mgr.smithi040.evuiyl (mgr.14180) 1153 : cluster [DBG] pgmap v763: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:36.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:35 smithi149 bash[28710]: cluster 2023-12-08T23:09:34.516477+0000 mgr.smithi040.evuiyl (mgr.14180) 1153 : cluster [DBG] pgmap v763: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:36.132 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:36.132 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:36.965 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:37.966 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:37.977 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:37 smithi040 bash[24841]: audit 2023-12-08T23:09:36.112397+0000 mgr.smithi040.evuiyl (mgr.14180) 1154 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:37.978 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:37 smithi040 bash[24841]: cluster 2023-12-08T23:09:36.517741+0000 mgr.smithi040.evuiyl (mgr.14180) 1155 : cluster [DBG] pgmap v764: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:38.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:37 smithi149 bash[28710]: audit 2023-12-08T23:09:36.112397+0000 mgr.smithi040.evuiyl (mgr.14180) 1154 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:38.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:37 smithi149 bash[28710]: cluster 2023-12-08T23:09:36.517741+0000 mgr.smithi040.evuiyl (mgr.14180) 1155 : cluster [DBG] pgmap v764: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:39.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:39 smithi040 bash[24841]: cluster 2023-12-08T23:09:38.518985+0000 mgr.smithi040.evuiyl (mgr.14180) 1156 : cluster [DBG] pgmap v765: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:39 smithi149 bash[28710]: cluster 2023-12-08T23:09:38.518985+0000 mgr.smithi040.evuiyl (mgr.14180) 1156 : cluster [DBG] pgmap v765: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:41.291 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:41.291 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:41 smithi040 bash[24841]: cluster 2023-12-08T23:09:40.520143+0000 mgr.smithi040.evuiyl (mgr.14180) 1157 : cluster [DBG] pgmap v766: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:42.061 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:42.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:41 smithi149 bash[28710]: cluster 2023-12-08T23:09:40.520143+0000 mgr.smithi040.evuiyl (mgr.14180) 1157 : cluster [DBG] pgmap v766: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:43.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:42 smithi040 bash[24841]: audit 2023-12-08T23:09:41.272388+0000 mgr.smithi040.evuiyl (mgr.14180) 1158 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:43.063 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:43.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:42 smithi149 bash[28710]: audit 2023-12-08T23:09:41.272388+0000 mgr.smithi040.evuiyl (mgr.14180) 1158 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:44.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:43 smithi040 bash[24841]: cluster 2023-12-08T23:09:42.521297+0000 mgr.smithi040.evuiyl (mgr.14180) 1159 : cluster [DBG] pgmap v767: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:43 smithi149 bash[28710]: cluster 2023-12-08T23:09:42.521297+0000 mgr.smithi040.evuiyl (mgr.14180) 1159 : cluster [DBG] pgmap v767: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:44.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:44 smithi040 bash[24841]: cluster 2023-12-08T23:09:44.522584+0000 mgr.smithi040.evuiyl (mgr.14180) 1160 : cluster [DBG] pgmap v768: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:44 smithi149 bash[28710]: cluster 2023-12-08T23:09:44.522584+0000 mgr.smithi040.evuiyl (mgr.14180) 1160 : cluster [DBG] pgmap v768: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:46.366 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:46.366 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:47.156 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:48.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:47 smithi040 bash[24841]: audit 2023-12-08T23:09:46.346985+0000 mgr.smithi040.evuiyl (mgr.14180) 1161 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:48.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:47 smithi040 bash[24841]: cluster 2023-12-08T23:09:46.523706+0000 mgr.smithi040.evuiyl (mgr.14180) 1162 : cluster [DBG] pgmap v769: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:47 smithi149 bash[28710]: audit 2023-12-08T23:09:46.346985+0000 mgr.smithi040.evuiyl (mgr.14180) 1161 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:47 smithi149 bash[28710]: cluster 2023-12-08T23:09:46.523706+0000 mgr.smithi040.evuiyl (mgr.14180) 1162 : cluster [DBG] pgmap v769: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:48.157 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:50.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:49 smithi040 bash[24841]: cluster 2023-12-08T23:09:48.524899+0000 mgr.smithi040.evuiyl (mgr.14180) 1163 : cluster [DBG] pgmap v770: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:49 smithi149 bash[28710]: cluster 2023-12-08T23:09:48.524899+0000 mgr.smithi040.evuiyl (mgr.14180) 1163 : cluster [DBG] pgmap v770: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:51.516 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:51.516 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:51.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:51 smithi040 bash[24841]: cluster 2023-12-08T23:09:50.526027+0000 mgr.smithi040.evuiyl (mgr.14180) 1164 : cluster [DBG] pgmap v771: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:51 smithi149 bash[28710]: cluster 2023-12-08T23:09:50.526027+0000 mgr.smithi040.evuiyl (mgr.14180) 1164 : cluster [DBG] pgmap v771: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:09:52.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:53.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:52 smithi040 bash[24841]: audit 2023-12-08T23:09:51.498166+0000 mgr.smithi040.evuiyl (mgr.14180) 1165 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:52 smithi149 bash[28710]: audit 2023-12-08T23:09:51.498166+0000 mgr.smithi040.evuiyl (mgr.14180) 1165 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:53.303 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:09:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:53 smithi040 bash[24841]: cluster 2023-12-08T23:09:52.527201+0000 mgr.smithi040.evuiyl (mgr.14180) 1166 : cluster [DBG] pgmap v772: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:53 smithi149 bash[28710]: cluster 2023-12-08T23:09:52.527201+0000 mgr.smithi040.evuiyl (mgr.14180) 1166 : cluster [DBG] pgmap v772: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:56.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:55 smithi040 bash[24841]: cluster 2023-12-08T23:09:54.528284+0000 mgr.smithi040.evuiyl (mgr.14180) 1167 : cluster [DBG] pgmap v773: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:55 smithi149 bash[28710]: cluster 2023-12-08T23:09:54.528284+0000 mgr.smithi040.evuiyl (mgr.14180) 1167 : cluster [DBG] pgmap v773: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:56.535 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:09:56.536 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:09:57.355 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:09:58.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:57 smithi040 bash[24841]: audit 2023-12-08T23:09:56.518208+0000 mgr.smithi040.evuiyl (mgr.14180) 1168 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:58.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:57 smithi040 bash[24841]: cluster 2023-12-08T23:09:56.529394+0000 mgr.smithi040.evuiyl (mgr.14180) 1169 : cluster [DBG] pgmap v774: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:58.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:57 smithi149 bash[28710]: audit 2023-12-08T23:09:56.518208+0000 mgr.smithi040.evuiyl (mgr.14180) 1168 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:09:58.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:57 smithi149 bash[28710]: cluster 2023-12-08T23:09:56.529394+0000 mgr.smithi040.evuiyl (mgr.14180) 1169 : cluster [DBG] pgmap v774: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:09:58.356 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:00.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:09:59 smithi040 bash[24841]: cluster 2023-12-08T23:09:58.530742+0000 mgr.smithi040.evuiyl (mgr.14180) 1170 : cluster [DBG] pgmap v775: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:00.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:09:59 smithi149 bash[28710]: cluster 2023-12-08T23:09:58.530742+0000 mgr.smithi040.evuiyl (mgr.14180) 1170 : cluster [DBG] pgmap v775: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:01.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:00 smithi040 bash[24841]: cluster 2023-12-08T23:10:00.000133+0000 mon.smithi040 (mon.0) 956 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2023-12-08T23:10:01.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:00 smithi149 bash[28710]: cluster 2023-12-08T23:10:00.000133+0000 mon.smithi040 (mon.0) 956 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2023-12-08T23:10:01.504 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:01.505 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:01.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:01 smithi040 bash[24841]: cluster 2023-12-08T23:10:00.531914+0000 mgr.smithi040.evuiyl (mgr.14180) 1171 : cluster [DBG] pgmap v776: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:01.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:01 smithi040 bash[24841]: audit 2023-12-08T23:10:01.488139+0000 mgr.smithi040.evuiyl (mgr.14180) 1172 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:01 smithi149 bash[28710]: cluster 2023-12-08T23:10:00.531914+0000 mgr.smithi040.evuiyl (mgr.14180) 1171 : cluster [DBG] pgmap v776: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:01 smithi149 bash[28710]: audit 2023-12-08T23:10:01.488139+0000 mgr.smithi040.evuiyl (mgr.14180) 1172 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:02.269 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:03.270 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:03.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:03 smithi040 bash[24841]: cluster 2023-12-08T23:10:02.533029+0000 mgr.smithi040.evuiyl (mgr.14180) 1173 : cluster [DBG] pgmap v777: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:03.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:03 smithi149 bash[28710]: cluster 2023-12-08T23:10:02.533029+0000 mgr.smithi040.evuiyl (mgr.14180) 1173 : cluster [DBG] pgmap v777: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:05.990 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:05 smithi040 bash[24841]: cluster 2023-12-08T23:10:04.534266+0000 mgr.smithi040.evuiyl (mgr.14180) 1174 : cluster [DBG] pgmap v778: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:06.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:05 smithi149 bash[28710]: cluster 2023-12-08T23:10:04.534266+0000 mgr.smithi040.evuiyl (mgr.14180) 1174 : cluster [DBG] pgmap v778: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:06.398 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:06.398 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:07.189 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:08.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:07 smithi040 bash[24841]: audit 2023-12-08T23:10:06.380274+0000 mgr.smithi040.evuiyl (mgr.14180) 1175 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:08.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:07 smithi040 bash[24841]: cluster 2023-12-08T23:10:06.535577+0000 mgr.smithi040.evuiyl (mgr.14180) 1176 : cluster [DBG] pgmap v779: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:08.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:07 smithi149 bash[28710]: audit 2023-12-08T23:10:06.380274+0000 mgr.smithi040.evuiyl (mgr.14180) 1175 : audit [DBG] from='client.15392 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:08.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:07 smithi149 bash[28710]: cluster 2023-12-08T23:10:06.535577+0000 mgr.smithi040.evuiyl (mgr.14180) 1176 : cluster [DBG] pgmap v779: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:08.190 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:10.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:09 smithi040 bash[24841]: cluster 2023-12-08T23:10:08.536372+0000 mgr.smithi040.evuiyl (mgr.14180) 1177 : cluster [DBG] pgmap v780: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:09 smithi149 bash[28710]: cluster 2023-12-08T23:10:08.536372+0000 mgr.smithi040.evuiyl (mgr.14180) 1177 : cluster [DBG] pgmap v780: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:10.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:10 smithi040 bash[24841]: audit 2023-12-08T23:10:10.507553+0000 mon.smithi040 (mon.0) 957 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:10:11.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:10 smithi149 bash[28710]: audit 2023-12-08T23:10:10.507553+0000 mon.smithi040 (mon.0) 957 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:10:11.389 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:11.390 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:08:02.133265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.dmqdig on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: cluster 2023-12-08T23:10:10.537261+0000 mgr.smithi040.evuiyl (mgr.14180) 1178 : cluster [DBG] pgmap v781: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.782482+0000 mon.smithi040 (mon.0) 958 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2023-12-08T23:10:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.814047+0000 mon.smithi040 (mon.0) 959 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:10:11.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.815616+0000 mon.smithi040 (mon.0) 960 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:10:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.822343+0000 mon.smithi040 (mon.0) 961 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.828655+0000 mon.smithi040 (mon.0) 962 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:10:11.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:11 smithi040 bash[24841]: audit 2023-12-08T23:10:10.839239+0000 mon.smithi040 (mon.0) 963 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: cluster 2023-12-08T23:10:10.537261+0000 mgr.smithi040.evuiyl (mgr.14180) 1178 : cluster [DBG] pgmap v781: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.782482+0000 mon.smithi040 (mon.0) 958 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi149", "name": "osd_memory_target"}]: dispatch 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.814047+0000 mon.smithi040 (mon.0) 959 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.815616+0000 mon.smithi040 (mon.0) 960 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.822343+0000 mon.smithi040 (mon.0) 961 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.828655+0000 mon.smithi040 (mon.0) 962 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:10:12.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:11 smithi149 bash[28710]: audit 2023-12-08T23:10:10.839239+0000 mon.smithi040 (mon.0) 963 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:12.206 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:13.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:12 smithi040 bash[24841]: cluster 2023-12-08T23:10:10.823117+0000 mgr.smithi040.evuiyl (mgr.14180) 1179 : cluster [DBG] pgmap v782: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:13.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:12 smithi040 bash[24841]: cephadm 2023-12-08T23:10:10.844741+0000 mgr.smithi040.evuiyl (mgr.14180) 1180 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mdvexe on smithi149 2023-12-08T23:10:13.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:12 smithi040 bash[24841]: audit 2023-12-08T23:10:11.370161+0000 mgr.smithi040.evuiyl (mgr.14180) 1181 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:13.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:12 smithi040 bash[24841]: cluster 2023-12-08T23:10:11.820552+0000 mon.smithi040 (mon.0) 964 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:10:13.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:12 smithi040 bash[24841]: cluster 2023-12-08T23:10:11.820630+0000 mon.smithi040 (mon.0) 965 : cluster [INF] Cluster is now healthy 2023-12-08T23:10:13.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:12 smithi149 bash[28710]: cluster 2023-12-08T23:10:10.823117+0000 mgr.smithi040.evuiyl (mgr.14180) 1179 : cluster [DBG] pgmap v782: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:13.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:12 smithi149 bash[28710]: cephadm 2023-12-08T23:10:10.844741+0000 mgr.smithi040.evuiyl (mgr.14180) 1180 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mdvexe on smithi149 2023-12-08T23:10:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:12 smithi149 bash[28710]: audit 2023-12-08T23:10:11.370161+0000 mgr.smithi040.evuiyl (mgr.14180) 1181 : audit [DBG] from='client.15396 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:12 smithi149 bash[28710]: cluster 2023-12-08T23:10:11.820552+0000 mon.smithi040 (mon.0) 964 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:10:13.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:12 smithi149 bash[28710]: cluster 2023-12-08T23:10:11.820630+0000 mon.smithi040 (mon.0) 965 : cluster [INF] Cluster is now healthy 2023-12-08T23:10:13.207 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:14.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:14 smithi040 bash[24841]: cluster 2023-12-08T23:10:12.824099+0000 mgr.smithi040.evuiyl (mgr.14180) 1182 : cluster [DBG] pgmap v783: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:15.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:14 smithi149 bash[28710]: cluster 2023-12-08T23:10:12.824099+0000 mgr.smithi040.evuiyl (mgr.14180) 1182 : cluster [DBG] pgmap v783: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:16.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:15 smithi040 bash[24841]: audit 2023-12-08T23:10:14.791698+0000 mon.smithi040 (mon.0) 966 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mdvexe"}]: dispatch 2023-12-08T23:10:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:15 smithi149 bash[28710]: audit 2023-12-08T23:10:14.791698+0000 mon.smithi040 (mon.0) 966 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mdvexe"}]: dispatch 2023-12-08T23:10:16.498 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:16.498 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:06.541749Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ipbktw on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ipbktw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ipbktw\nDeploy daemon haproxy.nfs.foo.smithi149.ipbktw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.497005Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.eytbrn on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-eytbrn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.eytbrn\nDeploy daemon haproxy.nfs.foo.smithi040.eytbrn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:09:10.500334Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.hipxvz on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: cephadm 2023-12-08T23:10:14.790948+0000 mgr.smithi040.evuiyl (mgr.14180) 1183 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: cephadm 2023-12-08T23:10:14.791236+0000 mgr.smithi040.evuiyl (mgr.14180) 1184 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: cephadm 2023-12-08T23:10:14.793219+0000 mgr.smithi040.evuiyl (mgr.14180) 1185 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:17.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: cephadm 2023-12-08T23:10:14.798057+0000 mgr.smithi040.evuiyl (mgr.14180) 1186 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.tzgdcl on smithi040 2023-12-08T23:10:17.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:16 smithi040 bash[24841]: cluster 2023-12-08T23:10:14.824851+0000 mgr.smithi040.evuiyl (mgr.14180) 1187 : cluster [DBG] pgmap v784: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: cephadm 2023-12-08T23:10:14.790948+0000 mgr.smithi040.evuiyl (mgr.14180) 1183 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: cephadm 2023-12-08T23:10:14.791236+0000 mgr.smithi040.evuiyl (mgr.14180) 1184 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: cephadm 2023-12-08T23:10:14.793219+0000 mgr.smithi040.evuiyl (mgr.14180) 1185 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe 2023-12-08T23:10:17.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mdvexe ... 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: cephadm 2023-12-08T23:10:14.798057+0000 mgr.smithi040.evuiyl (mgr.14180) 1186 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.tzgdcl on smithi040 2023-12-08T23:10:17.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:16 smithi149 bash[28710]: cluster 2023-12-08T23:10:14.824851+0000 mgr.smithi040.evuiyl (mgr.14180) 1187 : cluster [DBG] pgmap v784: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:17.283 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:18.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:17 smithi040 bash[24841]: audit 2023-12-08T23:10:16.480001+0000 mgr.smithi040.evuiyl (mgr.14180) 1188 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:18.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:17 smithi040 bash[24841]: audit 2023-12-08T23:10:17.448935+0000 mon.smithi040 (mon.0) 967 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:18.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:17 smithi149 bash[28710]: audit 2023-12-08T23:10:16.480001+0000 mgr.smithi040.evuiyl (mgr.14180) 1188 : audit [DBG] from='client.15400 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:18.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:17 smithi149 bash[28710]: audit 2023-12-08T23:10:17.448935+0000 mon.smithi040 (mon.0) 967 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:18.284 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:18.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:18 smithi040 bash[24841]: cluster 2023-12-08T23:10:16.825814+0000 mgr.smithi040.evuiyl (mgr.14180) 1189 : cluster [DBG] pgmap v785: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:18 smithi149 bash[28710]: cluster 2023-12-08T23:10:16.825814+0000 mgr.smithi040.evuiyl (mgr.14180) 1189 : cluster [DBG] pgmap v785: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:20.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:19 smithi040 bash[24841]: audit 2023-12-08T23:10:19.139512+0000 mon.smithi040 (mon.0) 968 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.tzgdcl"}]: dispatch 2023-12-08T23:10:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:19 smithi149 bash[28710]: audit 2023-12-08T23:10:19.139512+0000 mon.smithi040 (mon.0) 968 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.tzgdcl"}]: dispatch 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cluster 2023-12-08T23:10:18.826581+0000 mgr.smithi040.evuiyl (mgr.14180) 1190 : cluster [DBG] pgmap v786: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cephadm 2023-12-08T23:10:19.138234+0000 mgr.smithi040.evuiyl (mgr.14180) 1191 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cephadm 2023-12-08T23:10:19.138809+0000 mgr.smithi040.evuiyl (mgr.14180) 1192 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cephadm 2023-12-08T23:10:19.141042+0000 mgr.smithi040.evuiyl (mgr.14180) 1193 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cephadm 2023-12-08T23:10:19.145033+0000 mgr.smithi040.evuiyl (mgr.14180) 1194 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cephadm 2023-12-08T23:10:19.147853+0000 mgr.smithi040.evuiyl (mgr.14180) 1195 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cluster 2023-12-08T23:10:19.148842+0000 mgr.smithi040.evuiyl (mgr.14180) 1196 : cluster [DBG] pgmap v787: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: cluster 2023-12-08T23:10:19.620680+0000 mon.smithi040 (mon.0) 969 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:10:21.019 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:20 smithi040 bash[24841]: audit 2023-12-08T23:10:20.136934+0000 mon.smithi040 (mon.0) 970 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cluster 2023-12-08T23:10:18.826581+0000 mgr.smithi040.evuiyl (mgr.14180) 1190 : cluster [DBG] pgmap v786: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cephadm 2023-12-08T23:10:19.138234+0000 mgr.smithi040.evuiyl (mgr.14180) 1191 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cephadm 2023-12-08T23:10:19.138809+0000 mgr.smithi040.evuiyl (mgr.14180) 1192 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cephadm 2023-12-08T23:10:19.141042+0000 mgr.smithi040.evuiyl (mgr.14180) 1193 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.tzgdcl ... 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cephadm 2023-12-08T23:10:19.145033+0000 mgr.smithi040.evuiyl (mgr.14180) 1194 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cephadm 2023-12-08T23:10:19.147853+0000 mgr.smithi040.evuiyl (mgr.14180) 1195 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cluster 2023-12-08T23:10:19.148842+0000 mgr.smithi040.evuiyl (mgr.14180) 1196 : cluster [DBG] pgmap v787: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: cluster 2023-12-08T23:10:19.620680+0000 mon.smithi040 (mon.0) 969 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:10:21.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:20 smithi149 bash[28710]: audit 2023-12-08T23:10:20.136934+0000 mon.smithi040 (mon.0) 970 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:21.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:21 smithi040 bash[24841]: cluster 2023-12-08T23:10:21.150027+0000 mgr.smithi040.evuiyl (mgr.14180) 1197 : cluster [DBG] pgmap v788: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:21.866 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:21.867 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:21 smithi149 bash[28710]: cluster 2023-12-08T23:10:21.150027+0000 mgr.smithi040.evuiyl (mgr.14180) 1197 : cluster [DBG] pgmap v788: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:22.699 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:23.700 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:23.908 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:23 smithi040 bash[24841]: audit 2023-12-08T23:10:21.847849+0000 mgr.smithi040.evuiyl (mgr.14180) 1198 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:23 smithi149 bash[28710]: audit 2023-12-08T23:10:21.847849+0000 mgr.smithi040.evuiyl (mgr.14180) 1198 : audit [DBG] from='client.15404 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:24.879 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:24 smithi040 bash[24841]: cluster 2023-12-08T23:10:23.151208+0000 mgr.smithi040.evuiyl (mgr.14180) 1199 : cluster [DBG] pgmap v789: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:25.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:24 smithi149 bash[28710]: cluster 2023-12-08T23:10:23.151208+0000 mgr.smithi040.evuiyl (mgr.14180) 1199 : cluster [DBG] pgmap v789: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:26.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:26 smithi040 bash[24841]: cluster 2023-12-08T23:10:25.152359+0000 mgr.smithi040.evuiyl (mgr.14180) 1200 : cluster [DBG] pgmap v790: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:26.940 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:26.940 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:26 smithi149 bash[28710]: cluster 2023-12-08T23:10:25.152359+0000 mgr.smithi040.evuiyl (mgr.14180) 1200 : cluster [DBG] pgmap v790: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:27.745 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:28.746 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:28.946 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:28 smithi040 bash[24841]: audit 2023-12-08T23:10:26.919870+0000 mgr.smithi040.evuiyl (mgr.14180) 1201 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:28.947 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:28 smithi040 bash[24841]: cluster 2023-12-08T23:10:27.153532+0000 mgr.smithi040.evuiyl (mgr.14180) 1202 : cluster [DBG] pgmap v791: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:28 smithi149 bash[28710]: audit 2023-12-08T23:10:26.919870+0000 mgr.smithi040.evuiyl (mgr.14180) 1201 : audit [DBG] from='client.15408 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:28 smithi149 bash[28710]: cluster 2023-12-08T23:10:27.153532+0000 mgr.smithi040.evuiyl (mgr.14180) 1202 : cluster [DBG] pgmap v791: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:31.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:30 smithi040 bash[24841]: cluster 2023-12-08T23:10:29.154258+0000 mgr.smithi040.evuiyl (mgr.14180) 1203 : cluster [DBG] pgmap v792: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:30 smithi149 bash[28710]: cluster 2023-12-08T23:10:29.154258+0000 mgr.smithi040.evuiyl (mgr.14180) 1203 : cluster [DBG] pgmap v792: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:10:32.184 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:32.185 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:32 smithi040 bash[24841]: cluster 2023-12-08T23:10:31.155547+0000 mgr.smithi040.evuiyl (mgr.14180) 1204 : cluster [DBG] pgmap v793: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:32.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:32 smithi040 bash[24841]: audit 2023-12-08T23:10:32.446817+0000 mon.smithi040 (mon.0) 971 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:32.983 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:32 smithi149 bash[28710]: cluster 2023-12-08T23:10:31.155547+0000 mgr.smithi040.evuiyl (mgr.14180) 1204 : cluster [DBG] pgmap v793: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:32 smithi149 bash[28710]: audit 2023-12-08T23:10:32.446817+0000 mon.smithi040 (mon.0) 971 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:10:33.984 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:33.998 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:33 smithi040 bash[24841]: audit 2023-12-08T23:10:32.164907+0000 mgr.smithi040.evuiyl (mgr.14180) 1205 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:33 smithi149 bash[28710]: audit 2023-12-08T23:10:32.164907+0000 mgr.smithi040.evuiyl (mgr.14180) 1205 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:34.977 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:34 smithi040 bash[24841]: cluster 2023-12-08T23:10:33.156755+0000 mgr.smithi040.evuiyl (mgr.14180) 1206 : cluster [DBG] pgmap v794: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:34 smithi149 bash[28710]: cluster 2023-12-08T23:10:33.156755+0000 mgr.smithi040.evuiyl (mgr.14180) 1206 : cluster [DBG] pgmap v794: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:37.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:36 smithi040 bash[24841]: cluster 2023-12-08T23:10:35.158108+0000 mgr.smithi040.evuiyl (mgr.14180) 1207 : cluster [DBG] pgmap v795: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:37.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:36 smithi149 bash[28710]: cluster 2023-12-08T23:10:35.158108+0000 mgr.smithi040.evuiyl (mgr.14180) 1207 : cluster [DBG] pgmap v795: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:37.080 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:37.081 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:37.844 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:38.845 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:38.857 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:38 smithi040 bash[24841]: audit 2023-12-08T23:10:37.061950+0000 mgr.smithi040.evuiyl (mgr.14180) 1208 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:38.857 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:38 smithi040 bash[24841]: cluster 2023-12-08T23:10:37.159350+0000 mgr.smithi040.evuiyl (mgr.14180) 1209 : cluster [DBG] pgmap v796: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:39.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:38 smithi149 bash[28710]: audit 2023-12-08T23:10:37.061950+0000 mgr.smithi040.evuiyl (mgr.14180) 1208 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:39.176 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:38 smithi149 bash[28710]: cluster 2023-12-08T23:10:37.159350+0000 mgr.smithi040.evuiyl (mgr.14180) 1209 : cluster [DBG] pgmap v796: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:41.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:40 smithi040 bash[24841]: cluster 2023-12-08T23:10:39.160559+0000 mgr.smithi040.evuiyl (mgr.14180) 1210 : cluster [DBG] pgmap v797: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:41.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:40 smithi149 bash[28710]: cluster 2023-12-08T23:10:39.160559+0000 mgr.smithi040.evuiyl (mgr.14180) 1210 : cluster [DBG] pgmap v797: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:42.039 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:42.039 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:42.822 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:43.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:42 smithi040 bash[24841]: cluster 2023-12-08T23:10:41.161715+0000 mgr.smithi040.evuiyl (mgr.14180) 1211 : cluster [DBG] pgmap v798: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:43.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:42 smithi149 bash[28710]: cluster 2023-12-08T23:10:41.161715+0000 mgr.smithi040.evuiyl (mgr.14180) 1211 : cluster [DBG] pgmap v798: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:43.824 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:44.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:43 smithi040 bash[24841]: audit 2023-12-08T23:10:42.018484+0000 mgr.smithi040.evuiyl (mgr.14180) 1212 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:43 smithi149 bash[28710]: audit 2023-12-08T23:10:42.018484+0000 mgr.smithi040.evuiyl (mgr.14180) 1212 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:44.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:44 smithi040 bash[24841]: cluster 2023-12-08T23:10:43.162890+0000 mgr.smithi040.evuiyl (mgr.14180) 1213 : cluster [DBG] pgmap v799: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:44 smithi149 bash[28710]: cluster 2023-12-08T23:10:43.162890+0000 mgr.smithi040.evuiyl (mgr.14180) 1213 : cluster [DBG] pgmap v799: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:47.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:46 smithi040 bash[24841]: cluster 2023-12-08T23:10:45.164280+0000 mgr.smithi040.evuiyl (mgr.14180) 1214 : cluster [DBG] pgmap v800: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:46 smithi149 bash[28710]: cluster 2023-12-08T23:10:45.164280+0000 mgr.smithi040.evuiyl (mgr.14180) 1214 : cluster [DBG] pgmap v800: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:47.213 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:47.213 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:48.027 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:49.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:48 smithi040 bash[24841]: cluster 2023-12-08T23:10:47.165369+0000 mgr.smithi040.evuiyl (mgr.14180) 1215 : cluster [DBG] pgmap v801: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:49.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:48 smithi040 bash[24841]: audit 2023-12-08T23:10:47.195069+0000 mgr.smithi040.evuiyl (mgr.14180) 1216 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:49.028 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:48 smithi149 bash[28710]: cluster 2023-12-08T23:10:47.165369+0000 mgr.smithi040.evuiyl (mgr.14180) 1215 : cluster [DBG] pgmap v801: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:48 smithi149 bash[28710]: audit 2023-12-08T23:10:47.195069+0000 mgr.smithi040.evuiyl (mgr.14180) 1216 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:50.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:50 smithi040 bash[24841]: cluster 2023-12-08T23:10:49.166641+0000 mgr.smithi040.evuiyl (mgr.14180) 1217 : cluster [DBG] pgmap v802: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:50 smithi149 bash[28710]: cluster 2023-12-08T23:10:49.166641+0000 mgr.smithi040.evuiyl (mgr.14180) 1217 : cluster [DBG] pgmap v802: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:51.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:51 smithi040 bash[24841]: cluster 2023-12-08T23:10:51.167705+0000 mgr.smithi040.evuiyl (mgr.14180) 1218 : cluster [DBG] pgmap v803: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:51 smithi149 bash[28710]: cluster 2023-12-08T23:10:51.167705+0000 mgr.smithi040.evuiyl (mgr.14180) 1218 : cluster [DBG] pgmap v803: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:10:52.239 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:52.239 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:53.064 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:53 smithi040 bash[24841]: audit 2023-12-08T23:10:52.218501+0000 mgr.smithi040.evuiyl (mgr.14180) 1219 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:53 smithi149 bash[28710]: audit 2023-12-08T23:10:52.218501+0000 mgr.smithi040.evuiyl (mgr.14180) 1219 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:54.065 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:10:55.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:54 smithi040 bash[24841]: cluster 2023-12-08T23:10:53.168890+0000 mgr.smithi040.evuiyl (mgr.14180) 1220 : cluster [DBG] pgmap v804: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:54 smithi149 bash[28710]: cluster 2023-12-08T23:10:53.168890+0000 mgr.smithi040.evuiyl (mgr.14180) 1220 : cluster [DBG] pgmap v804: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:56.867 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:56 smithi040 bash[24841]: cluster 2023-12-08T23:10:55.169642+0000 mgr.smithi040.evuiyl (mgr.14180) 1221 : cluster [DBG] pgmap v805: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:57.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:56 smithi149 bash[28710]: cluster 2023-12-08T23:10:55.169642+0000 mgr.smithi040.evuiyl (mgr.14180) 1221 : cluster [DBG] pgmap v805: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:57.309 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:10:57.309 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:10:58.070 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:10:59.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:58 smithi040 bash[24841]: cluster 2023-12-08T23:10:57.170780+0000 mgr.smithi040.evuiyl (mgr.14180) 1222 : cluster [DBG] pgmap v806: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:59.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:10:58 smithi040 bash[24841]: audit 2023-12-08T23:10:57.290566+0000 mgr.smithi040.evuiyl (mgr.14180) 1223 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:58 smithi149 bash[28710]: cluster 2023-12-08T23:10:57.170780+0000 mgr.smithi040.evuiyl (mgr.14180) 1222 : cluster [DBG] pgmap v806: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:10:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:10:58 smithi149 bash[28710]: audit 2023-12-08T23:10:57.290566+0000 mgr.smithi040.evuiyl (mgr.14180) 1223 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:10:59.071 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:00.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:00 smithi040 bash[24841]: cluster 2023-12-08T23:10:59.171906+0000 mgr.smithi040.evuiyl (mgr.14180) 1224 : cluster [DBG] pgmap v807: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:01.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:00 smithi149 bash[28710]: cluster 2023-12-08T23:10:59.171906+0000 mgr.smithi040.evuiyl (mgr.14180) 1224 : cluster [DBG] pgmap v807: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:02.249 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:02.249 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:02.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:02 smithi040 bash[24841]: cluster 2023-12-08T23:11:01.173209+0000 mgr.smithi040.evuiyl (mgr.14180) 1225 : cluster [DBG] pgmap v808: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:03.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:02 smithi149 bash[28710]: cluster 2023-12-08T23:11:01.173209+0000 mgr.smithi040.evuiyl (mgr.14180) 1225 : cluster [DBG] pgmap v808: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:03.168 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:04.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:03 smithi040 bash[24841]: audit 2023-12-08T23:11:02.231301+0000 mgr.smithi040.evuiyl (mgr.14180) 1226 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:04.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:03 smithi149 bash[28710]: audit 2023-12-08T23:11:02.231301+0000 mgr.smithi040.evuiyl (mgr.14180) 1226 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:04.169 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:04 smithi040 bash[24841]: cluster 2023-12-08T23:11:03.174281+0000 mgr.smithi040.evuiyl (mgr.14180) 1227 : cluster [DBG] pgmap v809: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:05.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:04 smithi149 bash[28710]: cluster 2023-12-08T23:11:03.174281+0000 mgr.smithi040.evuiyl (mgr.14180) 1227 : cluster [DBG] pgmap v809: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:06.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:05 smithi040 bash[24841]: cluster 2023-12-08T23:11:05.175706+0000 mgr.smithi040.evuiyl (mgr.14180) 1228 : cluster [DBG] pgmap v810: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:06.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:05 smithi149 bash[28710]: cluster 2023-12-08T23:11:05.175706+0000 mgr.smithi040.evuiyl (mgr.14180) 1228 : cluster [DBG] pgmap v810: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:07.440 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:07.440 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:08.304 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:09.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:08 smithi040 bash[24841]: cluster 2023-12-08T23:11:07.176889+0000 mgr.smithi040.evuiyl (mgr.14180) 1229 : cluster [DBG] pgmap v811: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:09.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:08 smithi040 bash[24841]: audit 2023-12-08T23:11:07.422892+0000 mgr.smithi040.evuiyl (mgr.14180) 1230 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:09.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:08 smithi149 bash[28710]: cluster 2023-12-08T23:11:07.176889+0000 mgr.smithi040.evuiyl (mgr.14180) 1229 : cluster [DBG] pgmap v811: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:09.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:08 smithi149 bash[28710]: audit 2023-12-08T23:11:07.422892+0000 mgr.smithi040.evuiyl (mgr.14180) 1230 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:09.305 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:10.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:10 smithi040 bash[24841]: cluster 2023-12-08T23:11:09.178042+0000 mgr.smithi040.evuiyl (mgr.14180) 1231 : cluster [DBG] pgmap v812: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:11.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:10 smithi149 bash[28710]: cluster 2023-12-08T23:11:09.178042+0000 mgr.smithi040.evuiyl (mgr.14180) 1231 : cluster [DBG] pgmap v812: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:12.515 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:12.515 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:13.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:12 smithi040 bash[24841]: cluster 2023-12-08T23:11:11.179372+0000 mgr.smithi040.evuiyl (mgr.14180) 1232 : cluster [DBG] pgmap v813: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:13.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:12 smithi149 bash[28710]: cluster 2023-12-08T23:11:11.179372+0000 mgr.smithi040.evuiyl (mgr.14180) 1232 : cluster [DBG] pgmap v813: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:13.286 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:14.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:13 smithi040 bash[24841]: audit 2023-12-08T23:11:12.501762+0000 mgr.smithi040.evuiyl (mgr.14180) 1233 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:13 smithi149 bash[28710]: audit 2023-12-08T23:11:12.501762+0000 mgr.smithi040.evuiyl (mgr.14180) 1233 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:14.287 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:14.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:14 smithi040 bash[24841]: cluster 2023-12-08T23:11:13.180559+0000 mgr.smithi040.evuiyl (mgr.14180) 1234 : cluster [DBG] pgmap v814: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:15.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:14 smithi149 bash[28710]: cluster 2023-12-08T23:11:13.180559+0000 mgr.smithi040.evuiyl (mgr.14180) 1234 : cluster [DBG] pgmap v814: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:17.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:16 smithi040 bash[24841]: cluster 2023-12-08T23:11:15.181818+0000 mgr.smithi040.evuiyl (mgr.14180) 1235 : cluster [DBG] pgmap v815: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:16 smithi149 bash[28710]: cluster 2023-12-08T23:11:15.181818+0000 mgr.smithi040.evuiyl (mgr.14180) 1235 : cluster [DBG] pgmap v815: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:17.525 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:17.525 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:18.281 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:19.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:18 smithi040 bash[24841]: cluster 2023-12-08T23:11:17.182629+0000 mgr.smithi040.evuiyl (mgr.14180) 1236 : cluster [DBG] pgmap v816: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:19.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:18 smithi040 bash[24841]: audit 2023-12-08T23:11:17.512244+0000 mgr.smithi040.evuiyl (mgr.14180) 1237 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:18 smithi149 bash[28710]: cluster 2023-12-08T23:11:17.182629+0000 mgr.smithi040.evuiyl (mgr.14180) 1236 : cluster [DBG] pgmap v816: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:18 smithi149 bash[28710]: audit 2023-12-08T23:11:17.512244+0000 mgr.smithi040.evuiyl (mgr.14180) 1237 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:19.282 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.152416+0000 mon.smithi040 (mon.0) 972 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.471117+0000 mon.smithi040 (mon.0) 973 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.472574+0000 mon.smithi040 (mon.0) 974 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.480737+0000 mon.smithi040 (mon.0) 975 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.486600+0000 mon.smithi040 (mon.0) 976 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:11:19.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:19 smithi040 bash[24841]: audit 2023-12-08T23:11:19.499996+0000 mon.smithi040 (mon.0) 977 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.152416+0000 mon.smithi040 (mon.0) 972 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:11:20.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.471117+0000 mon.smithi040 (mon.0) 973 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:11:20.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.472574+0000 mon.smithi040 (mon.0) 974 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:11:20.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.480737+0000 mon.smithi040 (mon.0) 975 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:20.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.486600+0000 mon.smithi040 (mon.0) 976 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:11:20.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:19 smithi149 bash[28710]: audit 2023-12-08T23:11:19.499996+0000 mon.smithi040 (mon.0) 977 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:20 smithi040 bash[24841]: cluster 2023-12-08T23:11:19.183650+0000 mgr.smithi040.evuiyl (mgr.14180) 1238 : cluster [DBG] pgmap v817: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:20 smithi040 bash[24841]: cluster 2023-12-08T23:11:19.481489+0000 mgr.smithi040.evuiyl (mgr.14180) 1239 : cluster [DBG] pgmap v818: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 397 B/s rd, 0 op/s 2023-12-08T23:11:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:20 smithi040 bash[24841]: cephadm 2023-12-08T23:11:19.503585+0000 mgr.smithi040.evuiyl (mgr.14180) 1240 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.macrzh on smithi149 2023-12-08T23:11:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:20 smithi040 bash[24841]: cluster 2023-12-08T23:11:19.632318+0000 mon.smithi040 (mon.0) 978 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:11:20.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:20 smithi040 bash[24841]: cluster 2023-12-08T23:11:19.632393+0000 mon.smithi040 (mon.0) 979 : cluster [INF] Cluster is now healthy 2023-12-08T23:11:21.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:20 smithi149 bash[28710]: cluster 2023-12-08T23:11:19.183650+0000 mgr.smithi040.evuiyl (mgr.14180) 1238 : cluster [DBG] pgmap v817: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:20 smithi149 bash[28710]: cluster 2023-12-08T23:11:19.481489+0000 mgr.smithi040.evuiyl (mgr.14180) 1239 : cluster [DBG] pgmap v818: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 397 B/s rd, 0 op/s 2023-12-08T23:11:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:20 smithi149 bash[28710]: cephadm 2023-12-08T23:11:19.503585+0000 mgr.smithi040.evuiyl (mgr.14180) 1240 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.macrzh on smithi149 2023-12-08T23:11:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:20 smithi149 bash[28710]: cluster 2023-12-08T23:11:19.632318+0000 mon.smithi040 (mon.0) 978 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:11:21.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:20 smithi149 bash[28710]: cluster 2023-12-08T23:11:19.632393+0000 mon.smithi040 (mon.0) 979 : cluster [INF] Cluster is now healthy 2023-12-08T23:11:21.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:21 smithi040 bash[24841]: cluster 2023-12-08T23:11:21.482412+0000 mgr.smithi040.evuiyl (mgr.14180) 1241 : cluster [DBG] pgmap v819: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:21 smithi149 bash[28710]: cluster 2023-12-08T23:11:21.482412+0000 mgr.smithi040.evuiyl (mgr.14180) 1241 : cluster [DBG] pgmap v819: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:22.633 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:22.633 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:09:10.502539Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ruouzk on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:14.792901Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mdvexe on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mdvexe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mdvexe\nDeploy daemon haproxy.nfs.foo.smithi149.mdvexe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.140811Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.tzgdcl on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-tzgdcl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.tzgdcl\nDeploy daemon haproxy.nfs.foo.smithi040.tzgdcl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:10:19.144836Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gotzae on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:23.410 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:23 smithi040 bash[24841]: audit 2023-12-08T23:11:22.615207+0000 mgr.smithi040.evuiyl (mgr.14180) 1242 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:23.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:23 smithi040 bash[24841]: audit 2023-12-08T23:11:23.531428+0000 mon.smithi040 (mon.0) 980 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.macrzh"}]: dispatch 2023-12-08T23:11:23.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:23 smithi149 bash[28710]: audit 2023-12-08T23:11:22.615207+0000 mgr.smithi040.evuiyl (mgr.14180) 1242 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:23.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:23 smithi149 bash[28710]: audit 2023-12-08T23:11:23.531428+0000 mon.smithi040 (mon.0) 980 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.macrzh"}]: dispatch 2023-12-08T23:11:24.411 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: cluster 2023-12-08T23:11:23.483397+0000 mgr.smithi040.evuiyl (mgr.14180) 1243 : cluster [DBG] pgmap v820: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:24.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: cephadm 2023-12-08T23:11:23.530174+0000 mgr.smithi040.evuiyl (mgr.14180) 1244 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:11:24.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: cephadm 2023-12-08T23:11:23.530660+0000 mgr.smithi040.evuiyl (mgr.14180) 1245 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: cephadm 2023-12-08T23:11:23.533072+0000 mgr.smithi040.evuiyl (mgr.14180) 1246 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:24.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:24.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:24.769 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:24 smithi040 bash[24841]: cephadm 2023-12-08T23:11:23.537100+0000 mgr.smithi040.evuiyl (mgr.14180) 1247 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.kgzsdi on smithi040 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: cluster 2023-12-08T23:11:23.483397+0000 mgr.smithi040.evuiyl (mgr.14180) 1243 : cluster [DBG] pgmap v820: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: cephadm 2023-12-08T23:11:23.530174+0000 mgr.smithi040.evuiyl (mgr.14180) 1244 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: cephadm 2023-12-08T23:11:23.530660+0000 mgr.smithi040.evuiyl (mgr.14180) 1245 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: cephadm 2023-12-08T23:11:23.533072+0000 mgr.smithi040.evuiyl (mgr.14180) 1246 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:25.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.macrzh ... 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:25.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:24 smithi149 bash[28710]: cephadm 2023-12-08T23:11:23.537100+0000 mgr.smithi040.evuiyl (mgr.14180) 1247 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.kgzsdi on smithi040 2023-12-08T23:11:26.890 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:26 smithi040 bash[24841]: cluster 2023-12-08T23:11:25.484314+0000 mgr.smithi040.evuiyl (mgr.14180) 1248 : cluster [DBG] pgmap v821: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:26 smithi149 bash[28710]: cluster 2023-12-08T23:11:25.484314+0000 mgr.smithi040.evuiyl (mgr.14180) 1248 : cluster [DBG] pgmap v821: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:11:27.968 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:27.968 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:28.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:27 smithi040 bash[24841]: audit 2023-12-08T23:11:27.451484+0000 mon.smithi040 (mon.0) 981 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.kgzsdi"}]: dispatch 2023-12-08T23:11:28.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:27 smithi149 bash[28710]: audit 2023-12-08T23:11:27.451484+0000 mon.smithi040 (mon.0) 981 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.kgzsdi"}]: dispatch 2023-12-08T23:11:28.756 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cephadm 2023-12-08T23:11:27.450658+0000 mgr.smithi040.evuiyl (mgr.14180) 1249 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cephadm 2023-12-08T23:11:27.451001+0000 mgr.smithi040.evuiyl (mgr.14180) 1250 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cephadm 2023-12-08T23:11:27.452669+0000 mgr.smithi040.evuiyl (mgr.14180) 1251 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cephadm 2023-12-08T23:11:27.454589+0000 mgr.smithi040.evuiyl (mgr.14180) 1252 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cephadm 2023-12-08T23:11:27.456456+0000 mgr.smithi040.evuiyl (mgr.14180) 1253 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cluster 2023-12-08T23:11:27.457410+0000 mgr.smithi040.evuiyl (mgr.14180) 1254 : cluster [DBG] pgmap v822: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:11:29.018 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:28 smithi040 bash[24841]: cluster 2023-12-08T23:11:27.614569+0000 mon.smithi040 (mon.0) 982 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cephadm 2023-12-08T23:11:27.450658+0000 mgr.smithi040.evuiyl (mgr.14180) 1249 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cephadm 2023-12-08T23:11:27.451001+0000 mgr.smithi040.evuiyl (mgr.14180) 1250 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cephadm 2023-12-08T23:11:27.452669+0000 mgr.smithi040.evuiyl (mgr.14180) 1251 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.kgzsdi ... 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cephadm 2023-12-08T23:11:27.454589+0000 mgr.smithi040.evuiyl (mgr.14180) 1252 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cephadm 2023-12-08T23:11:27.456456+0000 mgr.smithi040.evuiyl (mgr.14180) 1253 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cluster 2023-12-08T23:11:27.457410+0000 mgr.smithi040.evuiyl (mgr.14180) 1254 : cluster [DBG] pgmap v822: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:11:29.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:28 smithi149 bash[28710]: cluster 2023-12-08T23:11:27.614569+0000 mon.smithi040 (mon.0) 982 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:11:29.756 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:29.951 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:29 smithi040 bash[24841]: audit 2023-12-08T23:11:27.949496+0000 mgr.smithi040.evuiyl (mgr.14180) 1255 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:30.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:29 smithi149 bash[28710]: audit 2023-12-08T23:11:27.949496+0000 mgr.smithi040.evuiyl (mgr.14180) 1255 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:31.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:30 smithi040 bash[24841]: cluster 2023-12-08T23:11:29.458663+0000 mgr.smithi040.evuiyl (mgr.14180) 1256 : cluster [DBG] pgmap v823: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 398 B/s rd, 0 op/s 2023-12-08T23:11:31.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:30 smithi040 bash[24841]: audit 2023-12-08T23:11:30.181366+0000 mon.smithi040 (mon.0) 983 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:30 smithi149 bash[28710]: cluster 2023-12-08T23:11:29.458663+0000 mgr.smithi040.evuiyl (mgr.14180) 1256 : cluster [DBG] pgmap v823: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 398 B/s rd, 0 op/s 2023-12-08T23:11:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:30 smithi149 bash[28710]: audit 2023-12-08T23:11:30.181366+0000 mon.smithi040 (mon.0) 983 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:11:31.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:31 smithi040 bash[24841]: cluster 2023-12-08T23:11:31.459866+0000 mgr.smithi040.evuiyl (mgr.14180) 1257 : cluster [DBG] pgmap v824: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:31 smithi149 bash[28710]: cluster 2023-12-08T23:11:31.459866+0000 mgr.smithi040.evuiyl (mgr.14180) 1257 : cluster [DBG] pgmap v824: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:33.139 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:33.139 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:33.975 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:34.977 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:34.990 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:34 smithi040 bash[24841]: audit 2023-12-08T23:11:33.120410+0000 mgr.smithi040.evuiyl (mgr.14180) 1258 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:34.990 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:34 smithi040 bash[24841]: cluster 2023-12-08T23:11:33.461121+0000 mgr.smithi040.evuiyl (mgr.14180) 1259 : cluster [DBG] pgmap v825: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:34 smithi149 bash[28710]: audit 2023-12-08T23:11:33.120410+0000 mgr.smithi040.evuiyl (mgr.14180) 1258 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:34 smithi149 bash[28710]: cluster 2023-12-08T23:11:33.461121+0000 mgr.smithi040.evuiyl (mgr.14180) 1259 : cluster [DBG] pgmap v825: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:37.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:36 smithi040 bash[24841]: cluster 2023-12-08T23:11:35.461833+0000 mgr.smithi040.evuiyl (mgr.14180) 1260 : cluster [DBG] pgmap v826: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:37.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:36 smithi149 bash[28710]: cluster 2023-12-08T23:11:35.461833+0000 mgr.smithi040.evuiyl (mgr.14180) 1260 : cluster [DBG] pgmap v826: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:38.342 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:38.342 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:38.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:38 smithi040 bash[24841]: cluster 2023-12-08T23:11:37.462988+0000 mgr.smithi040.evuiyl (mgr.14180) 1261 : cluster [DBG] pgmap v827: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:39.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:38 smithi149 bash[28710]: cluster 2023-12-08T23:11:37.462988+0000 mgr.smithi040.evuiyl (mgr.14180) 1261 : cluster [DBG] pgmap v827: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:39.091 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:40.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:39 smithi040 bash[24841]: audit 2023-12-08T23:11:38.328784+0000 mgr.smithi040.evuiyl (mgr.14180) 1262 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:39 smithi149 bash[28710]: audit 2023-12-08T23:11:38.328784+0000 mgr.smithi040.evuiyl (mgr.14180) 1262 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:40.092 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:41.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:40 smithi040 bash[24841]: cluster 2023-12-08T23:11:39.464276+0000 mgr.smithi040.evuiyl (mgr.14180) 1263 : cluster [DBG] pgmap v828: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:41.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:40 smithi149 bash[28710]: cluster 2023-12-08T23:11:39.464276+0000 mgr.smithi040.evuiyl (mgr.14180) 1263 : cluster [DBG] pgmap v828: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:43.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:42 smithi040 bash[24841]: cluster 2023-12-08T23:11:41.465517+0000 mgr.smithi040.evuiyl (mgr.14180) 1264 : cluster [DBG] pgmap v829: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:43.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:42 smithi149 bash[28710]: cluster 2023-12-08T23:11:41.465517+0000 mgr.smithi040.evuiyl (mgr.14180) 1264 : cluster [DBG] pgmap v829: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:43.532 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:43.532 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:44.350 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:45.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:44 smithi040 bash[24841]: cluster 2023-12-08T23:11:43.466796+0000 mgr.smithi040.evuiyl (mgr.14180) 1265 : cluster [DBG] pgmap v830: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:45.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:44 smithi040 bash[24841]: audit 2023-12-08T23:11:43.519430+0000 mgr.smithi040.evuiyl (mgr.14180) 1266 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:44 smithi149 bash[28710]: cluster 2023-12-08T23:11:43.466796+0000 mgr.smithi040.evuiyl (mgr.14180) 1265 : cluster [DBG] pgmap v830: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:44 smithi149 bash[28710]: audit 2023-12-08T23:11:43.519430+0000 mgr.smithi040.evuiyl (mgr.14180) 1266 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:45.351 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:45 smithi040 bash[24841]: cluster 2023-12-08T23:11:45.467840+0000 mgr.smithi040.evuiyl (mgr.14180) 1267 : cluster [DBG] pgmap v831: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:45 smithi149 bash[28710]: cluster 2023-12-08T23:11:45.467840+0000 mgr.smithi040.evuiyl (mgr.14180) 1267 : cluster [DBG] pgmap v831: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:48.684 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:48.684 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:48.922 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:48 smithi040 bash[24841]: cluster 2023-12-08T23:11:47.469250+0000 mgr.smithi040.evuiyl (mgr.14180) 1268 : cluster [DBG] pgmap v832: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:48 smithi149 bash[28710]: cluster 2023-12-08T23:11:47.469250+0000 mgr.smithi040.evuiyl (mgr.14180) 1268 : cluster [DBG] pgmap v832: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:49.482 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:50.483 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:50 smithi040 bash[24841]: audit 2023-12-08T23:11:48.666802+0000 mgr.smithi040.evuiyl (mgr.14180) 1269 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:50.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:50 smithi040 bash[24841]: cluster 2023-12-08T23:11:49.470625+0000 mgr.smithi040.evuiyl (mgr.14180) 1270 : cluster [DBG] pgmap v833: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:50 smithi149 bash[28710]: audit 2023-12-08T23:11:48.666802+0000 mgr.smithi040.evuiyl (mgr.14180) 1269 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:50 smithi149 bash[28710]: cluster 2023-12-08T23:11:49.470625+0000 mgr.smithi040.evuiyl (mgr.14180) 1270 : cluster [DBG] pgmap v833: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:11:53.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:52 smithi040 bash[24841]: cluster 2023-12-08T23:11:51.471511+0000 mgr.smithi040.evuiyl (mgr.14180) 1271 : cluster [DBG] pgmap v834: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:52 smithi149 bash[28710]: cluster 2023-12-08T23:11:51.471511+0000 mgr.smithi040.evuiyl (mgr.14180) 1271 : cluster [DBG] pgmap v834: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:53.803 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:53.803 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:54.605 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:11:55.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:54 smithi040 bash[24841]: cluster 2023-12-08T23:11:53.472764+0000 mgr.smithi040.evuiyl (mgr.14180) 1272 : cluster [DBG] pgmap v835: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:54 smithi149 bash[28710]: cluster 2023-12-08T23:11:53.472764+0000 mgr.smithi040.evuiyl (mgr.14180) 1272 : cluster [DBG] pgmap v835: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:55.606 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:11:56.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:55 smithi040 bash[24841]: audit 2023-12-08T23:11:53.785367+0000 mgr.smithi040.evuiyl (mgr.14180) 1273 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:55 smithi149 bash[28710]: audit 2023-12-08T23:11:53.785367+0000 mgr.smithi040.evuiyl (mgr.14180) 1273 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:11:56.914 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:56 smithi040 bash[24841]: cluster 2023-12-08T23:11:55.473939+0000 mgr.smithi040.evuiyl (mgr.14180) 1274 : cluster [DBG] pgmap v836: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:57.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:56 smithi149 bash[28710]: cluster 2023-12-08T23:11:55.473939+0000 mgr.smithi040.evuiyl (mgr.14180) 1274 : cluster [DBG] pgmap v836: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:58.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:11:58 smithi040 bash[24841]: cluster 2023-12-08T23:11:57.475172+0000 mgr.smithi040.evuiyl (mgr.14180) 1275 : cluster [DBG] pgmap v837: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:58.909 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:11:58.909 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:11:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:11:58 smithi149 bash[28710]: cluster 2023-12-08T23:11:57.475172+0000 mgr.smithi040.evuiyl (mgr.14180) 1275 : cluster [DBG] pgmap v837: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:11:59.706 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:00.707 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:01.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:00 smithi040 bash[24841]: audit 2023-12-08T23:11:58.896420+0000 mgr.smithi040.evuiyl (mgr.14180) 1276 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:01.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:00 smithi040 bash[24841]: cluster 2023-12-08T23:11:59.476451+0000 mgr.smithi040.evuiyl (mgr.14180) 1277 : cluster [DBG] pgmap v838: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:01.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:00 smithi149 bash[28710]: audit 2023-12-08T23:11:58.896420+0000 mgr.smithi040.evuiyl (mgr.14180) 1276 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:01.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:00 smithi149 bash[28710]: cluster 2023-12-08T23:11:59.476451+0000 mgr.smithi040.evuiyl (mgr.14180) 1277 : cluster [DBG] pgmap v838: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:03.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:02 smithi040 bash[24841]: cluster 2023-12-08T23:12:01.477616+0000 mgr.smithi040.evuiyl (mgr.14180) 1278 : cluster [DBG] pgmap v839: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:03.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:02 smithi149 bash[28710]: cluster 2023-12-08T23:12:01.477616+0000 mgr.smithi040.evuiyl (mgr.14180) 1278 : cluster [DBG] pgmap v839: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:04.018 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:04.018 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:04.796 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:05.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:04 smithi040 bash[24841]: cluster 2023-12-08T23:12:03.478888+0000 mgr.smithi040.evuiyl (mgr.14180) 1279 : cluster [DBG] pgmap v840: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:05.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:04 smithi149 bash[28710]: cluster 2023-12-08T23:12:03.478888+0000 mgr.smithi040.evuiyl (mgr.14180) 1279 : cluster [DBG] pgmap v840: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:05.797 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:05.998 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:05 smithi040 bash[24841]: audit 2023-12-08T23:12:04.000363+0000 mgr.smithi040.evuiyl (mgr.14180) 1280 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:06.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:05 smithi149 bash[28710]: audit 2023-12-08T23:12:04.000363+0000 mgr.smithi040.evuiyl (mgr.14180) 1280 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:07.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:06 smithi040 bash[24841]: cluster 2023-12-08T23:12:05.480098+0000 mgr.smithi040.evuiyl (mgr.14180) 1281 : cluster [DBG] pgmap v841: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:07.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:06 smithi149 bash[28710]: cluster 2023-12-08T23:12:05.480098+0000 mgr.smithi040.evuiyl (mgr.14180) 1281 : cluster [DBG] pgmap v841: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:08.987 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:08.987 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:09.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:08 smithi040 bash[24841]: cluster 2023-12-08T23:12:07.480781+0000 mgr.smithi040.evuiyl (mgr.14180) 1282 : cluster [DBG] pgmap v842: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:09.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:08 smithi149 bash[28710]: cluster 2023-12-08T23:12:07.480781+0000 mgr.smithi040.evuiyl (mgr.14180) 1282 : cluster [DBG] pgmap v842: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:09.747 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:10.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:09 smithi040 bash[24841]: audit 2023-12-08T23:12:08.974347+0000 mgr.smithi040.evuiyl (mgr.14180) 1283 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:10.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:09 smithi040 bash[24841]: cluster 2023-12-08T23:12:09.482016+0000 mgr.smithi040.evuiyl (mgr.14180) 1284 : cluster [DBG] pgmap v843: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:09 smithi149 bash[28710]: audit 2023-12-08T23:12:08.974347+0000 mgr.smithi040.evuiyl (mgr.14180) 1283 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:09 smithi149 bash[28710]: cluster 2023-12-08T23:12:09.482016+0000 mgr.smithi040.evuiyl (mgr.14180) 1284 : cluster [DBG] pgmap v843: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:10.747 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:12.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:12 smithi149 bash[28710]: cluster 2023-12-08T23:12:11.483273+0000 mgr.smithi040.evuiyl (mgr.14180) 1285 : cluster [DBG] pgmap v844: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:12.829 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:12 smithi040 bash[24841]: cluster 2023-12-08T23:12:11.483273+0000 mgr.smithi040.evuiyl (mgr.14180) 1285 : cluster [DBG] pgmap v844: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:14.189 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:14.189 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:14.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:14 smithi040 bash[24841]: cluster 2023-12-08T23:12:13.484652+0000 mgr.smithi040.evuiyl (mgr.14180) 1286 : cluster [DBG] pgmap v845: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:14.958 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:15.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:14 smithi149 bash[28710]: cluster 2023-12-08T23:12:13.484652+0000 mgr.smithi040.evuiyl (mgr.14180) 1286 : cluster [DBG] pgmap v845: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:15.959 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:15.971 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:15 smithi040 bash[24841]: audit 2023-12-08T23:12:14.171631+0000 mgr.smithi040.evuiyl (mgr.14180) 1287 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:15 smithi149 bash[28710]: audit 2023-12-08T23:12:14.171631+0000 mgr.smithi040.evuiyl (mgr.14180) 1287 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:17.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:16 smithi040 bash[24841]: cluster 2023-12-08T23:12:15.485862+0000 mgr.smithi040.evuiyl (mgr.14180) 1288 : cluster [DBG] pgmap v846: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:16 smithi149 bash[28710]: cluster 2023-12-08T23:12:15.485862+0000 mgr.smithi040.evuiyl (mgr.14180) 1288 : cluster [DBG] pgmap v846: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:19.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:18 smithi040 bash[24841]: cluster 2023-12-08T23:12:17.486447+0000 mgr.smithi040.evuiyl (mgr.14180) 1289 : cluster [DBG] pgmap v847: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:18 smithi149 bash[28710]: cluster 2023-12-08T23:12:17.486447+0000 mgr.smithi040.evuiyl (mgr.14180) 1289 : cluster [DBG] pgmap v847: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:19.194 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:19.194 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:19.933 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:20.934 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:20.948 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:20 smithi040 bash[24841]: audit 2023-12-08T23:12:19.176167+0000 mgr.smithi040.evuiyl (mgr.14180) 1290 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:20.948 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:20 smithi040 bash[24841]: cluster 2023-12-08T23:12:19.487668+0000 mgr.smithi040.evuiyl (mgr.14180) 1291 : cluster [DBG] pgmap v848: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:21.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:20 smithi149 bash[28710]: audit 2023-12-08T23:12:19.176167+0000 mgr.smithi040.evuiyl (mgr.14180) 1290 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:21.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:20 smithi149 bash[28710]: cluster 2023-12-08T23:12:19.487668+0000 mgr.smithi040.evuiyl (mgr.14180) 1291 : cluster [DBG] pgmap v848: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:22 smithi040 bash[24841]: cluster 2023-12-08T23:12:21.488912+0000 mgr.smithi040.evuiyl (mgr.14180) 1292 : cluster [DBG] pgmap v849: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:23.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:22 smithi149 bash[28710]: cluster 2023-12-08T23:12:21.488912+0000 mgr.smithi040.evuiyl (mgr.14180) 1292 : cluster [DBG] pgmap v849: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:24.174 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:24.174 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:24.963 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:24 smithi040 bash[24841]: cluster 2023-12-08T23:12:23.490113+0000 mgr.smithi040.evuiyl (mgr.14180) 1293 : cluster [DBG] pgmap v850: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:24.965 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:25.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:24 smithi149 bash[28710]: cluster 2023-12-08T23:12:23.490113+0000 mgr.smithi040.evuiyl (mgr.14180) 1293 : cluster [DBG] pgmap v850: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:25.966 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:25.978 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:25 smithi040 bash[24841]: audit 2023-12-08T23:12:24.154889+0000 mgr.smithi040.evuiyl (mgr.14180) 1294 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:25.978 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:25 smithi040 bash[24841]: cluster 2023-12-08T23:12:25.491410+0000 mgr.smithi040.evuiyl (mgr.14180) 1295 : cluster [DBG] pgmap v851: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:25 smithi149 bash[28710]: audit 2023-12-08T23:12:24.154889+0000 mgr.smithi040.evuiyl (mgr.14180) 1294 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:25 smithi149 bash[28710]: cluster 2023-12-08T23:12:25.491410+0000 mgr.smithi040.evuiyl (mgr.14180) 1295 : cluster [DBG] pgmap v851: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:27.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:27 smithi040 bash[24841]: audit 2023-12-08T23:12:27.460713+0000 mon.smithi040 (mon.0) 984 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:12:27.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:27 smithi149 bash[28710]: audit 2023-12-08T23:12:27.460713+0000 mon.smithi040 (mon.0) 984 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: cluster 2023-12-08T23:12:27.492167+0000 mgr.smithi040.evuiyl (mgr.14180) 1296 : cluster [DBG] pgmap v852: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: audit 2023-12-08T23:12:27.759873+0000 mon.smithi040 (mon.0) 985 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: audit 2023-12-08T23:12:27.761509+0000 mon.smithi040 (mon.0) 986 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: audit 2023-12-08T23:12:27.769147+0000 mon.smithi040 (mon.0) 987 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: audit 2023-12-08T23:12:27.777775+0000 mon.smithi040 (mon.0) 988 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:12:29.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:28 smithi040 bash[24841]: audit 2023-12-08T23:12:27.794835+0000 mon.smithi040 (mon.0) 989 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: cluster 2023-12-08T23:12:27.492167+0000 mgr.smithi040.evuiyl (mgr.14180) 1296 : cluster [DBG] pgmap v852: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: audit 2023-12-08T23:12:27.759873+0000 mon.smithi040 (mon.0) 985 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:12:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: audit 2023-12-08T23:12:27.761509+0000 mon.smithi040 (mon.0) 986 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:12:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: audit 2023-12-08T23:12:27.769147+0000 mon.smithi040 (mon.0) 987 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: audit 2023-12-08T23:12:27.777775+0000 mon.smithi040 (mon.0) 988 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:12:29.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:28 smithi149 bash[28710]: audit 2023-12-08T23:12:27.794835+0000 mon.smithi040 (mon.0) 989 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:29.184 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:29.184 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:10:19.147719Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.nvxbcz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:29.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:29 smithi040 bash[24841]: cluster 2023-12-08T23:12:27.769987+0000 mgr.smithi040.evuiyl (mgr.14180) 1297 : cluster [DBG] pgmap v853: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:29.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:29 smithi040 bash[24841]: cephadm 2023-12-08T23:12:27.799327+0000 mgr.smithi040.evuiyl (mgr.14180) 1298 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.hqwgmi on smithi149 2023-12-08T23:12:29.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:29 smithi040 bash[24841]: cluster 2023-12-08T23:12:28.767299+0000 mon.smithi040 (mon.0) 990 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:12:29.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:29 smithi040 bash[24841]: cluster 2023-12-08T23:12:28.767355+0000 mon.smithi040 (mon.0) 991 : cluster [INF] Cluster is now healthy 2023-12-08T23:12:30.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:30.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:29 smithi149 bash[28710]: cluster 2023-12-08T23:12:27.769987+0000 mgr.smithi040.evuiyl (mgr.14180) 1297 : cluster [DBG] pgmap v853: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:30.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:29 smithi149 bash[28710]: cephadm 2023-12-08T23:12:27.799327+0000 mgr.smithi040.evuiyl (mgr.14180) 1298 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.hqwgmi on smithi149 2023-12-08T23:12:30.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:29 smithi149 bash[28710]: cluster 2023-12-08T23:12:28.767299+0000 mon.smithi040 (mon.0) 990 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:12:30.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:29 smithi149 bash[28710]: cluster 2023-12-08T23:12:28.767355+0000 mon.smithi040 (mon.0) 991 : cluster [INF] Cluster is now healthy 2023-12-08T23:12:31.003 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:31.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:30 smithi040 bash[24841]: audit 2023-12-08T23:12:29.166620+0000 mgr.smithi040.evuiyl (mgr.14180) 1299 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:31.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:30 smithi149 bash[28710]: audit 2023-12-08T23:12:29.166620+0000 mgr.smithi040.evuiyl (mgr.14180) 1299 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:31.745 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:31 smithi149 bash[28710]: cluster 2023-12-08T23:12:29.771087+0000 mgr.smithi040.evuiyl (mgr.14180) 1300 : cluster [DBG] pgmap v854: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:31.947 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:31 smithi040 bash[24841]: cluster 2023-12-08T23:12:29.771087+0000 mgr.smithi040.evuiyl (mgr.14180) 1300 : cluster [DBG] pgmap v854: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:32 smithi040 bash[24841]: audit 2023-12-08T23:12:31.942122+0000 mon.smithi040 (mon.0) 992 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.hqwgmi"}]: dispatch 2023-12-08T23:12:32.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:32 smithi040 bash[24841]: audit 2023-12-08T23:12:32.451754+0000 mon.smithi040 (mon.0) 993 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:32 smithi149 bash[28710]: audit 2023-12-08T23:12:31.942122+0000 mon.smithi040 (mon.0) 992 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.hqwgmi"}]: dispatch 2023-12-08T23:12:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:32 smithi149 bash[28710]: audit 2023-12-08T23:12:32.451754+0000 mon.smithi040 (mon.0) 993 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:34.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: cluster 2023-12-08T23:12:31.772131+0000 mgr.smithi040.evuiyl (mgr.14180) 1301 : cluster [DBG] pgmap v855: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: cephadm 2023-12-08T23:12:31.940955+0000 mgr.smithi040.evuiyl (mgr.14180) 1302 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:12:34.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: cephadm 2023-12-08T23:12:31.941496+0000 mgr.smithi040.evuiyl (mgr.14180) 1303 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: cephadm 2023-12-08T23:12:31.943699+0000 mgr.smithi040.evuiyl (mgr.14180) 1304 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:33 smithi040 bash[24841]: cephadm 2023-12-08T23:12:31.948093+0000 mgr.smithi040.evuiyl (mgr.14180) 1305 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.gpzvxc on smithi040 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: cluster 2023-12-08T23:12:31.772131+0000 mgr.smithi040.evuiyl (mgr.14180) 1301 : cluster [DBG] pgmap v855: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: cephadm 2023-12-08T23:12:31.940955+0000 mgr.smithi040.evuiyl (mgr.14180) 1302 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: cephadm 2023-12-08T23:12:31.941496+0000 mgr.smithi040.evuiyl (mgr.14180) 1303 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: cephadm 2023-12-08T23:12:31.943699+0000 mgr.smithi040.evuiyl (mgr.14180) 1304 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.hqwgmi ... 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:34.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:33 smithi149 bash[28710]: cephadm 2023-12-08T23:12:31.948093+0000 mgr.smithi040.evuiyl (mgr.14180) 1305 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.gpzvxc on smithi040 2023-12-08T23:12:34.433 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:34.434 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:23.532885Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.macrzh on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-macrzh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.macrzh\nDeploy daemon haproxy.nfs.foo.smithi149.macrzh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.452473Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.kgzsdi on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-kgzsdi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.kgzsdi\nDeploy daemon haproxy.nfs.foo.smithi040.kgzsdi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:11:27.454457Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.tcpuwu on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:35.269 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:36.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:35 smithi040 bash[24841]: cluster 2023-12-08T23:12:33.773195+0000 mgr.smithi040.evuiyl (mgr.14180) 1306 : cluster [DBG] pgmap v856: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:36.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:35 smithi040 bash[24841]: audit 2023-12-08T23:12:34.412925+0000 mgr.smithi040.evuiyl (mgr.14180) 1307 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:36.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:35 smithi149 bash[28710]: cluster 2023-12-08T23:12:33.773195+0000 mgr.smithi040.evuiyl (mgr.14180) 1306 : cluster [DBG] pgmap v856: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:36.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:35 smithi149 bash[28710]: audit 2023-12-08T23:12:34.412925+0000 mgr.smithi040.evuiyl (mgr.14180) 1307 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:36.270 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cephadm 2023-12-08T23:12:35.765954+0000 mgr.smithi040.evuiyl (mgr.14180) 1308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:12:36.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:36.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cephadm 2023-12-08T23:12:35.766590+0000 mgr.smithi040.evuiyl (mgr.14180) 1309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: audit 2023-12-08T23:12:35.767295+0000 mon.smithi040 (mon.0) 994 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.gpzvxc"}]: dispatch 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cephadm 2023-12-08T23:12:35.768927+0000 mgr.smithi040.evuiyl (mgr.14180) 1310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cephadm 2023-12-08T23:12:35.773011+0000 mgr.smithi040.evuiyl (mgr.14180) 1311 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cluster 2023-12-08T23:12:35.773976+0000 mgr.smithi040.evuiyl (mgr.14180) 1312 : cluster [DBG] pgmap v857: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cephadm 2023-12-08T23:12:35.775741+0000 mgr.smithi040.evuiyl (mgr.14180) 1313 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:12:36.768 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:36 smithi040 bash[24841]: cluster 2023-12-08T23:12:35.776671+0000 mgr.smithi040.evuiyl (mgr.14180) 1314 : cluster [DBG] pgmap v858: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 247 B/s rd, 0 op/s 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cephadm 2023-12-08T23:12:35.765954+0000 mgr.smithi040.evuiyl (mgr.14180) 1308 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:37.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cephadm 2023-12-08T23:12:35.766590+0000 mgr.smithi040.evuiyl (mgr.14180) 1309 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: audit 2023-12-08T23:12:35.767295+0000 mon.smithi040 (mon.0) 994 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.gpzvxc"}]: dispatch 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cephadm 2023-12-08T23:12:35.768927+0000 mgr.smithi040.evuiyl (mgr.14180) 1310 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.gpzvxc ... 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cephadm 2023-12-08T23:12:35.773011+0000 mgr.smithi040.evuiyl (mgr.14180) 1311 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cluster 2023-12-08T23:12:35.773976+0000 mgr.smithi040.evuiyl (mgr.14180) 1312 : cluster [DBG] pgmap v857: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cephadm 2023-12-08T23:12:35.775741+0000 mgr.smithi040.evuiyl (mgr.14180) 1313 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:12:37.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:36 smithi149 bash[28710]: cluster 2023-12-08T23:12:35.776671+0000 mgr.smithi040.evuiyl (mgr.14180) 1314 : cluster [DBG] pgmap v858: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 247 B/s rd, 0 op/s 2023-12-08T23:12:37.925 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:37 smithi040 bash[24841]: cluster 2023-12-08T23:12:36.655117+0000 mon.smithi040 (mon.0) 995 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:12:38.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:37 smithi149 bash[28710]: cluster 2023-12-08T23:12:36.655117+0000 mon.smithi040 (mon.0) 995 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:12:39.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:38 smithi040 bash[24841]: cluster 2023-12-08T23:12:37.777854+0000 mgr.smithi040.evuiyl (mgr.14180) 1315 : cluster [DBG] pgmap v859: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:39.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:38 smithi149 bash[28710]: cluster 2023-12-08T23:12:37.777854+0000 mgr.smithi040.evuiyl (mgr.14180) 1315 : cluster [DBG] pgmap v859: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:39.707 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:39.707 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:40.541 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:41.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:41 smithi040 bash[24841]: audit 2023-12-08T23:12:39.690098+0000 mgr.smithi040.evuiyl (mgr.14180) 1316 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:41.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:41 smithi040 bash[24841]: cluster 2023-12-08T23:12:39.779089+0000 mgr.smithi040.evuiyl (mgr.14180) 1317 : cluster [DBG] pgmap v860: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:41.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:41 smithi040 bash[24841]: audit 2023-12-08T23:12:40.237965+0000 mon.smithi040 (mon.0) 996 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:41.541 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:41.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:41 smithi149 bash[28710]: audit 2023-12-08T23:12:39.690098+0000 mgr.smithi040.evuiyl (mgr.14180) 1316 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:41 smithi149 bash[28710]: cluster 2023-12-08T23:12:39.779089+0000 mgr.smithi040.evuiyl (mgr.14180) 1317 : cluster [DBG] pgmap v860: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:41.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:41 smithi149 bash[28710]: audit 2023-12-08T23:12:40.237965+0000 mon.smithi040 (mon.0) 996 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:44.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:43 smithi040 bash[24841]: cluster 2023-12-08T23:12:41.780268+0000 mgr.smithi040.evuiyl (mgr.14180) 1318 : cluster [DBG] pgmap v861: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:43 smithi149 bash[28710]: cluster 2023-12-08T23:12:41.780268+0000 mgr.smithi040.evuiyl (mgr.14180) 1318 : cluster [DBG] pgmap v861: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:44.756 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:44.756 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:45.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:45 smithi040 bash[24841]: cluster 2023-12-08T23:12:43.781467+0000 mgr.smithi040.evuiyl (mgr.14180) 1319 : cluster [DBG] pgmap v862: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:45 smithi149 bash[28710]: cluster 2023-12-08T23:12:43.781467+0000 mgr.smithi040.evuiyl (mgr.14180) 1319 : cluster [DBG] pgmap v862: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:46.522 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:47.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:46 smithi040 bash[24841]: audit 2023-12-08T23:12:44.739412+0000 mgr.smithi040.evuiyl (mgr.14180) 1320 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:46 smithi149 bash[28710]: audit 2023-12-08T23:12:44.739412+0000 mgr.smithi040.evuiyl (mgr.14180) 1320 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:47.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:47 smithi040 bash[24841]: cluster 2023-12-08T23:12:45.782713+0000 mgr.smithi040.evuiyl (mgr.14180) 1321 : cluster [DBG] pgmap v863: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:47.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:47 smithi040 bash[24841]: audit 2023-12-08T23:12:47.451584+0000 mon.smithi040 (mon.0) 997 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:47 smithi149 bash[28710]: cluster 2023-12-08T23:12:45.782713+0000 mgr.smithi040.evuiyl (mgr.14180) 1321 : cluster [DBG] pgmap v863: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 204 B/s rd, 0 op/s 2023-12-08T23:12:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:47 smithi149 bash[28710]: audit 2023-12-08T23:12:47.451584+0000 mon.smithi040 (mon.0) 997 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:12:49.744 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:49.744 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:49.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:49 smithi040 bash[24841]: cluster 2023-12-08T23:12:47.783647+0000 mgr.smithi040.evuiyl (mgr.14180) 1322 : cluster [DBG] pgmap v864: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:49 smithi149 bash[28710]: cluster 2023-12-08T23:12:47.783647+0000 mgr.smithi040.evuiyl (mgr.14180) 1322 : cluster [DBG] pgmap v864: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:50.547 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:51.548 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:51.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:51 smithi040 bash[24841]: audit 2023-12-08T23:12:49.725597+0000 mgr.smithi040.evuiyl (mgr.14180) 1323 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:51.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:51 smithi040 bash[24841]: cluster 2023-12-08T23:12:49.785298+0000 mgr.smithi040.evuiyl (mgr.14180) 1324 : cluster [DBG] pgmap v865: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:51 smithi149 bash[28710]: audit 2023-12-08T23:12:49.725597+0000 mgr.smithi040.evuiyl (mgr.14180) 1323 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:51 smithi149 bash[28710]: cluster 2023-12-08T23:12:49.785298+0000 mgr.smithi040.evuiyl (mgr.14180) 1324 : cluster [DBG] pgmap v865: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:12:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:53 smithi040 bash[24841]: cluster 2023-12-08T23:12:51.786558+0000 mgr.smithi040.evuiyl (mgr.14180) 1325 : cluster [DBG] pgmap v866: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:53 smithi149 bash[28710]: cluster 2023-12-08T23:12:51.786558+0000 mgr.smithi040.evuiyl (mgr.14180) 1325 : cluster [DBG] pgmap v866: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:55.046 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:12:55.046 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:12:55.842 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:12:56.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:55 smithi040 bash[24841]: cluster 2023-12-08T23:12:53.787321+0000 mgr.smithi040.evuiyl (mgr.14180) 1326 : cluster [DBG] pgmap v867: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:55 smithi149 bash[28710]: cluster 2023-12-08T23:12:53.787321+0000 mgr.smithi040.evuiyl (mgr.14180) 1326 : cluster [DBG] pgmap v867: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:56.844 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:12:57.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:56 smithi040 bash[24841]: audit 2023-12-08T23:12:55.026884+0000 mgr.smithi040.evuiyl (mgr.14180) 1327 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:57.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:56 smithi149 bash[28710]: audit 2023-12-08T23:12:55.026884+0000 mgr.smithi040.evuiyl (mgr.14180) 1327 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:12:57.930 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:57 smithi040 bash[24841]: cluster 2023-12-08T23:12:55.788219+0000 mgr.smithi040.evuiyl (mgr.14180) 1328 : cluster [DBG] pgmap v868: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:12:58.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:57 smithi149 bash[28710]: cluster 2023-12-08T23:12:55.788219+0000 mgr.smithi040.evuiyl (mgr.14180) 1328 : cluster [DBG] pgmap v868: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:00.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:12:59 smithi040 bash[24841]: cluster 2023-12-08T23:12:57.789432+0000 mgr.smithi040.evuiyl (mgr.14180) 1329 : cluster [DBG] pgmap v869: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:00.050 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:00.050 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:00.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:12:59 smithi149 bash[28710]: cluster 2023-12-08T23:12:57.789432+0000 mgr.smithi040.evuiyl (mgr.14180) 1329 : cluster [DBG] pgmap v869: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:00.857 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:01.859 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:01.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:01 smithi040 bash[24841]: cluster 2023-12-08T23:12:59.790835+0000 mgr.smithi040.evuiyl (mgr.14180) 1330 : cluster [DBG] pgmap v870: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:01.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:01 smithi040 bash[24841]: audit 2023-12-08T23:13:00.038050+0000 mgr.smithi040.evuiyl (mgr.14180) 1331 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:01 smithi149 bash[28710]: cluster 2023-12-08T23:12:59.790835+0000 mgr.smithi040.evuiyl (mgr.14180) 1330 : cluster [DBG] pgmap v870: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:02.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:01 smithi149 bash[28710]: audit 2023-12-08T23:13:00.038050+0000 mgr.smithi040.evuiyl (mgr.14180) 1331 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:03.914 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:03 smithi040 bash[24841]: cluster 2023-12-08T23:13:01.792016+0000 mgr.smithi040.evuiyl (mgr.14180) 1332 : cluster [DBG] pgmap v871: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:04.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:03 smithi149 bash[28710]: cluster 2023-12-08T23:13:01.792016+0000 mgr.smithi040.evuiyl (mgr.14180) 1332 : cluster [DBG] pgmap v871: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:05.107 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:05.107 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:05.917 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:05 smithi040 bash[24841]: cluster 2023-12-08T23:13:03.793190+0000 mgr.smithi040.evuiyl (mgr.14180) 1333 : cluster [DBG] pgmap v872: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:05.919 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:06.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:05 smithi149 bash[28710]: cluster 2023-12-08T23:13:03.793190+0000 mgr.smithi040.evuiyl (mgr.14180) 1333 : cluster [DBG] pgmap v872: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:06.920 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:06.932 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:06 smithi040 bash[24841]: audit 2023-12-08T23:13:05.090094+0000 mgr.smithi040.evuiyl (mgr.14180) 1334 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:07.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:06 smithi149 bash[28710]: audit 2023-12-08T23:13:05.090094+0000 mgr.smithi040.evuiyl (mgr.14180) 1334 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:08.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:07 smithi040 bash[24841]: cluster 2023-12-08T23:13:05.794380+0000 mgr.smithi040.evuiyl (mgr.14180) 1335 : cluster [DBG] pgmap v873: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:08.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:07 smithi149 bash[28710]: cluster 2023-12-08T23:13:05.794380+0000 mgr.smithi040.evuiyl (mgr.14180) 1335 : cluster [DBG] pgmap v873: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:09.932 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:09 smithi040 bash[24841]: cluster 2023-12-08T23:13:07.795513+0000 mgr.smithi040.evuiyl (mgr.14180) 1336 : cluster [DBG] pgmap v874: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:09 smithi149 bash[28710]: cluster 2023-12-08T23:13:07.795513+0000 mgr.smithi040.evuiyl (mgr.14180) 1336 : cluster [DBG] pgmap v874: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:10.337 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:10.338 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:11.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:11.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:11 smithi040 bash[24841]: cluster 2023-12-08T23:13:09.796888+0000 mgr.smithi040.evuiyl (mgr.14180) 1337 : cluster [DBG] pgmap v875: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:11.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:11 smithi040 bash[24841]: audit 2023-12-08T23:13:10.320424+0000 mgr.smithi040.evuiyl (mgr.14180) 1338 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:11 smithi149 bash[28710]: cluster 2023-12-08T23:13:09.796888+0000 mgr.smithi040.evuiyl (mgr.14180) 1337 : cluster [DBG] pgmap v875: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:11 smithi149 bash[28710]: audit 2023-12-08T23:13:10.320424+0000 mgr.smithi040.evuiyl (mgr.14180) 1338 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:12.087 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:14.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:13 smithi040 bash[24841]: cluster 2023-12-08T23:13:11.798127+0000 mgr.smithi040.evuiyl (mgr.14180) 1339 : cluster [DBG] pgmap v876: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:13 smithi149 bash[28710]: cluster 2023-12-08T23:13:11.798127+0000 mgr.smithi040.evuiyl (mgr.14180) 1339 : cluster [DBG] pgmap v876: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:15.462 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:15.462 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:15.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:15 smithi040 bash[24841]: cluster 2023-12-08T23:13:13.799093+0000 mgr.smithi040.evuiyl (mgr.14180) 1340 : cluster [DBG] pgmap v877: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:15 smithi149 bash[28710]: cluster 2023-12-08T23:13:13.799093+0000 mgr.smithi040.evuiyl (mgr.14180) 1340 : cluster [DBG] pgmap v877: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:16.227 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:17.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:16 smithi040 bash[24841]: audit 2023-12-08T23:13:15.448866+0000 mgr.smithi040.evuiyl (mgr.14180) 1341 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:16 smithi149 bash[28710]: audit 2023-12-08T23:13:15.448866+0000 mgr.smithi040.evuiyl (mgr.14180) 1341 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:17.228 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:17 smithi040 bash[24841]: cluster 2023-12-08T23:13:15.800250+0000 mgr.smithi040.evuiyl (mgr.14180) 1342 : cluster [DBG] pgmap v878: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:18.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:17 smithi149 bash[28710]: cluster 2023-12-08T23:13:15.800250+0000 mgr.smithi040.evuiyl (mgr.14180) 1342 : cluster [DBG] pgmap v878: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:19.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:19 smithi040 bash[24841]: cluster 2023-12-08T23:13:17.801417+0000 mgr.smithi040.evuiyl (mgr.14180) 1343 : cluster [DBG] pgmap v879: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:19 smithi149 bash[28710]: cluster 2023-12-08T23:13:17.801417+0000 mgr.smithi040.evuiyl (mgr.14180) 1343 : cluster [DBG] pgmap v879: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:20.642 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:20.643 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:21.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:21.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:21 smithi040 bash[24841]: cluster 2023-12-08T23:13:19.802819+0000 mgr.smithi040.evuiyl (mgr.14180) 1344 : cluster [DBG] pgmap v880: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:21.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:21 smithi040 bash[24841]: audit 2023-12-08T23:13:20.623442+0000 mgr.smithi040.evuiyl (mgr.14180) 1345 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:21 smithi149 bash[28710]: cluster 2023-12-08T23:13:19.802819+0000 mgr.smithi040.evuiyl (mgr.14180) 1344 : cluster [DBG] pgmap v880: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:22.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:21 smithi149 bash[28710]: audit 2023-12-08T23:13:20.623442+0000 mgr.smithi040.evuiyl (mgr.14180) 1345 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:22.472 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:23.959 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:23 smithi040 bash[24841]: cluster 2023-12-08T23:13:21.804051+0000 mgr.smithi040.evuiyl (mgr.14180) 1346 : cluster [DBG] pgmap v881: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:23 smithi149 bash[28710]: cluster 2023-12-08T23:13:21.804051+0000 mgr.smithi040.evuiyl (mgr.14180) 1346 : cluster [DBG] pgmap v881: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:25.598 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:25.598 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:26.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:25 smithi040 bash[24841]: cluster 2023-12-08T23:13:23.805221+0000 mgr.smithi040.evuiyl (mgr.14180) 1347 : cluster [DBG] pgmap v882: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:25 smithi149 bash[28710]: cluster 2023-12-08T23:13:23.805221+0000 mgr.smithi040.evuiyl (mgr.14180) 1347 : cluster [DBG] pgmap v882: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:26.422 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:26.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:26 smithi040 bash[24841]: audit 2023-12-08T23:13:25.586034+0000 mgr.smithi040.evuiyl (mgr.14180) 1348 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:26 smithi149 bash[28710]: audit 2023-12-08T23:13:25.586034+0000 mgr.smithi040.evuiyl (mgr.14180) 1348 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:27.423 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:27.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:27 smithi040 bash[24841]: cluster 2023-12-08T23:13:25.805911+0000 mgr.smithi040.evuiyl (mgr.14180) 1349 : cluster [DBG] pgmap v883: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:28.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:27 smithi149 bash[28710]: cluster 2023-12-08T23:13:25.805911+0000 mgr.smithi040.evuiyl (mgr.14180) 1349 : cluster [DBG] pgmap v883: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:30.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:29 smithi040 bash[24841]: cluster 2023-12-08T23:13:27.806970+0000 mgr.smithi040.evuiyl (mgr.14180) 1350 : cluster [DBG] pgmap v884: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:30.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:29 smithi149 bash[28710]: cluster 2023-12-08T23:13:27.806970+0000 mgr.smithi040.evuiyl (mgr.14180) 1350 : cluster [DBG] pgmap v884: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:30.894 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:30.894 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:31.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:30 smithi040 bash[24841]: cluster 2023-12-08T23:13:29.808275+0000 mgr.smithi040.evuiyl (mgr.14180) 1351 : cluster [DBG] pgmap v885: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:30 smithi149 bash[28710]: cluster 2023-12-08T23:13:29.808275+0000 mgr.smithi040.evuiyl (mgr.14180) 1351 : cluster [DBG] pgmap v885: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:13:31.637 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:31.982 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:31 smithi040 bash[24841]: audit 2023-12-08T23:13:30.876767+0000 mgr.smithi040.evuiyl (mgr.14180) 1352 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:31 smithi149 bash[28710]: audit 2023-12-08T23:13:30.876767+0000 mgr.smithi040.evuiyl (mgr.14180) 1352 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:32.639 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:33.999 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:33 smithi040 bash[24841]: cluster 2023-12-08T23:13:31.809473+0000 mgr.smithi040.evuiyl (mgr.14180) 1353 : cluster [DBG] pgmap v886: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:33 smithi149 bash[28710]: cluster 2023-12-08T23:13:31.809473+0000 mgr.smithi040.evuiyl (mgr.14180) 1353 : cluster [DBG] pgmap v886: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:35.583 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:35.583 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:11:27.456341Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.wdiszn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:36.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:35 smithi040 bash[24841]: cluster 2023-12-08T23:13:33.810634+0000 mgr.smithi040.evuiyl (mgr.14180) 1354 : cluster [DBG] pgmap v887: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:36.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:35 smithi149 bash[28710]: cluster 2023-12-08T23:13:33.810634+0000 mgr.smithi040.evuiyl (mgr.14180) 1354 : cluster [DBG] pgmap v887: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:36.389 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:37.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:35.566620+0000 mgr.smithi040.evuiyl (mgr.14180) 1355 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:37.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:35.780007+0000 mon.smithi040 (mon.0) 998 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:13:37.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:36.085890+0000 mon.smithi040 (mon.0) 999 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:13:37.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:36.087002+0000 mon.smithi040 (mon.0) 1000 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:13:37.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:36.093850+0000 mon.smithi040 (mon.0) 1001 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:37.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:36.099094+0000 mon.smithi040 (mon.0) 1002 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:13:37.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:36 smithi040 bash[24841]: audit 2023-12-08T23:13:36.111019+0000 mon.smithi040 (mon.0) 1003 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:35.566620+0000 mgr.smithi040.evuiyl (mgr.14180) 1355 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:35.780007+0000 mon.smithi040 (mon.0) 998 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:36.085890+0000 mon.smithi040 (mon.0) 999 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:36.087002+0000 mon.smithi040 (mon.0) 1000 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:36.093850+0000 mon.smithi040 (mon.0) 1001 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:36.099094+0000 mon.smithi040 (mon.0) 1002 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:13:37.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:36 smithi149 bash[28710]: audit 2023-12-08T23:13:36.111019+0000 mon.smithi040 (mon.0) 1003 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:37.391 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:38.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:37 smithi040 bash[24841]: cluster 2023-12-08T23:13:35.811309+0000 mgr.smithi040.evuiyl (mgr.14180) 1356 : cluster [DBG] pgmap v888: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:38.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:37 smithi040 bash[24841]: cluster 2023-12-08T23:13:36.094394+0000 mgr.smithi040.evuiyl (mgr.14180) 1357 : cluster [DBG] pgmap v889: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:38.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:37 smithi040 bash[24841]: cephadm 2023-12-08T23:13:36.114177+0000 mgr.smithi040.evuiyl (mgr.14180) 1358 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.qalemr on smithi149 2023-12-08T23:13:38.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:37 smithi040 bash[24841]: cluster 2023-12-08T23:13:36.646384+0000 mon.smithi040 (mon.0) 1004 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:13:38.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:37 smithi040 bash[24841]: cluster 2023-12-08T23:13:36.646463+0000 mon.smithi040 (mon.0) 1005 : cluster [INF] Cluster is now healthy 2023-12-08T23:13:38.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:37 smithi149 bash[28710]: cluster 2023-12-08T23:13:35.811309+0000 mgr.smithi040.evuiyl (mgr.14180) 1356 : cluster [DBG] pgmap v888: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:38.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:37 smithi149 bash[28710]: cluster 2023-12-08T23:13:36.094394+0000 mgr.smithi040.evuiyl (mgr.14180) 1357 : cluster [DBG] pgmap v889: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:38.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:37 smithi149 bash[28710]: cephadm 2023-12-08T23:13:36.114177+0000 mgr.smithi040.evuiyl (mgr.14180) 1358 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.qalemr on smithi149 2023-12-08T23:13:38.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:37 smithi149 bash[28710]: cluster 2023-12-08T23:13:36.646384+0000 mon.smithi040 (mon.0) 1004 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:13:38.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:37 smithi149 bash[28710]: cluster 2023-12-08T23:13:36.646463+0000 mon.smithi040 (mon.0) 1005 : cluster [INF] Cluster is now healthy 2023-12-08T23:13:39.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:39 smithi149 bash[28710]: cluster 2023-12-08T23:13:38.095227+0000 mgr.smithi040.evuiyl (mgr.14180) 1359 : cluster [DBG] pgmap v890: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:40.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:39 smithi040 bash[24841]: cluster 2023-12-08T23:13:38.095227+0000 mgr.smithi040.evuiyl (mgr.14180) 1359 : cluster [DBG] pgmap v890: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:40.820 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:40.820 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:31.943416Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.hqwgmi on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-hqwgmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.hqwgmi\nDeploy daemon haproxy.nfs.foo.smithi149.hqwgmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.768644Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.gpzvxc on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-gpzvxc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.gpzvxc\nDeploy daemon haproxy.nfs.foo.smithi040.gpzvxc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:12:35.772831Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.necuxc on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:41.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:40 smithi040 bash[24841]: audit 2023-12-08T23:13:40.018233+0000 mon.smithi040 (mon.0) 1006 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.qalemr"}]: dispatch 2023-12-08T23:13:41.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:40 smithi149 bash[28710]: audit 2023-12-08T23:13:40.018233+0000 mon.smithi040 (mon.0) 1006 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.qalemr"}]: dispatch 2023-12-08T23:13:41.692 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: cephadm 2023-12-08T23:13:40.017140+0000 mgr.smithi040.evuiyl (mgr.14180) 1360 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:41.983 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.984 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: cephadm 2023-12-08T23:13:40.017652+0000 mgr.smithi040.evuiyl (mgr.14180) 1361 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: cephadm 2023-12-08T23:13:40.019645+0000 mgr.smithi040.evuiyl (mgr.14180) 1362 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:41.985 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: cephadm 2023-12-08T23:13:40.022288+0000 mgr.smithi040.evuiyl (mgr.14180) 1363 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.rqqgik on smithi040 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: cluster 2023-12-08T23:13:40.096242+0000 mgr.smithi040.evuiyl (mgr.14180) 1364 : cluster [DBG] pgmap v891: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:41.986 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:41 smithi040 bash[24841]: audit 2023-12-08T23:13:40.804709+0000 mgr.smithi040.evuiyl (mgr.14180) 1365 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: cephadm 2023-12-08T23:13:40.017140+0000 mgr.smithi040.evuiyl (mgr.14180) 1360 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: cephadm 2023-12-08T23:13:40.017652+0000 mgr.smithi040.evuiyl (mgr.14180) 1361 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: cephadm 2023-12-08T23:13:40.019645+0000 mgr.smithi040.evuiyl (mgr.14180) 1362 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.qalemr ... 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: cephadm 2023-12-08T23:13:40.022288+0000 mgr.smithi040.evuiyl (mgr.14180) 1363 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.rqqgik on smithi040 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: cluster 2023-12-08T23:13:40.096242+0000 mgr.smithi040.evuiyl (mgr.14180) 1364 : cluster [DBG] pgmap v891: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:42.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:41 smithi149 bash[28710]: audit 2023-12-08T23:13:40.804709+0000 mgr.smithi040.evuiyl (mgr.14180) 1365 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:42.693 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:43.709 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:43 smithi040 bash[24841]: cluster 2023-12-08T23:13:42.097255+0000 mgr.smithi040.evuiyl (mgr.14180) 1366 : cluster [DBG] pgmap v892: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:43 smithi149 bash[28710]: cluster 2023-12-08T23:13:42.097255+0000 mgr.smithi040.evuiyl (mgr.14180) 1366 : cluster [DBG] pgmap v892: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:13:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:44 smithi040 bash[24841]: audit 2023-12-08T23:13:43.923679+0000 mon.smithi040 (mon.0) 1007 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.rqqgik"}]: dispatch 2023-12-08T23:13:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:44 smithi149 bash[28710]: audit 2023-12-08T23:13:43.923679+0000 mon.smithi040 (mon.0) 1007 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.rqqgik"}]: dispatch 2023-12-08T23:13:45.816 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:45.816 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:46.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cephadm 2023-12-08T23:13:43.922499+0000 mgr.smithi040.evuiyl (mgr.14180) 1367 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:13:46.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cephadm 2023-12-08T23:13:43.923046+0000 mgr.smithi040.evuiyl (mgr.14180) 1368 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cephadm 2023-12-08T23:13:43.925133+0000 mgr.smithi040.evuiyl (mgr.14180) 1369 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cephadm 2023-12-08T23:13:43.927458+0000 mgr.smithi040.evuiyl (mgr.14180) 1370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cephadm 2023-12-08T23:13:43.930321+0000 mgr.smithi040.evuiyl (mgr.14180) 1371 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cluster 2023-12-08T23:13:43.931611+0000 mgr.smithi040.evuiyl (mgr.14180) 1372 : cluster [DBG] pgmap v893: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:13:46.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: cluster 2023-12-08T23:13:44.643791+0000 mon.smithi040 (mon.0) 1008 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:13:46.017 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:45 smithi040 bash[24841]: audit 2023-12-08T23:13:45.287469+0000 mon.smithi040 (mon.0) 1009 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cephadm 2023-12-08T23:13:43.922499+0000 mgr.smithi040.evuiyl (mgr.14180) 1367 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cephadm 2023-12-08T23:13:43.923046+0000 mgr.smithi040.evuiyl (mgr.14180) 1368 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cephadm 2023-12-08T23:13:43.925133+0000 mgr.smithi040.evuiyl (mgr.14180) 1369 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.rqqgik ... 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cephadm 2023-12-08T23:13:43.927458+0000 mgr.smithi040.evuiyl (mgr.14180) 1370 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cephadm 2023-12-08T23:13:43.930321+0000 mgr.smithi040.evuiyl (mgr.14180) 1371 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cluster 2023-12-08T23:13:43.931611+0000 mgr.smithi040.evuiyl (mgr.14180) 1372 : cluster [DBG] pgmap v893: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: cluster 2023-12-08T23:13:44.643791+0000 mon.smithi040 (mon.0) 1008 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:13:46.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:45 smithi149 bash[28710]: audit 2023-12-08T23:13:45.287469+0000 mon.smithi040 (mon.0) 1009 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:13:46.658 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:47.659 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:48.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:47 smithi040 bash[24841]: audit 2023-12-08T23:13:45.804194+0000 mgr.smithi040.evuiyl (mgr.14180) 1373 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:48.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:47 smithi040 bash[24841]: cluster 2023-12-08T23:13:45.932248+0000 mgr.smithi040.evuiyl (mgr.14180) 1374 : cluster [DBG] pgmap v894: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:13:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:47 smithi149 bash[28710]: audit 2023-12-08T23:13:45.804194+0000 mgr.smithi040.evuiyl (mgr.14180) 1373 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:48.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:47 smithi149 bash[28710]: cluster 2023-12-08T23:13:45.932248+0000 mgr.smithi040.evuiyl (mgr.14180) 1374 : cluster [DBG] pgmap v894: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 202 B/s rd, 0 op/s 2023-12-08T23:13:50.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:49 smithi040 bash[24841]: cluster 2023-12-08T23:13:47.933337+0000 mgr.smithi040.evuiyl (mgr.14180) 1375 : cluster [DBG] pgmap v895: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:49 smithi149 bash[28710]: cluster 2023-12-08T23:13:47.933337+0000 mgr.smithi040.evuiyl (mgr.14180) 1375 : cluster [DBG] pgmap v895: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:51.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:50 smithi040 bash[24841]: cluster 2023-12-08T23:13:49.934751+0000 mgr.smithi040.evuiyl (mgr.14180) 1376 : cluster [DBG] pgmap v896: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 345 B/s rd, 0 op/s 2023-12-08T23:13:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:50 smithi149 bash[28710]: cluster 2023-12-08T23:13:49.934751+0000 mgr.smithi040.evuiyl (mgr.14180) 1376 : cluster [DBG] pgmap v896: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 345 B/s rd, 0 op/s 2023-12-08T23:13:51.160 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:51.161 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:51.970 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:52.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:51 smithi040 bash[24841]: audit 2023-12-08T23:13:51.149057+0000 mgr.smithi040.evuiyl (mgr.14180) 1377 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:51 smithi149 bash[28710]: audit 2023-12-08T23:13:51.149057+0000 mgr.smithi040.evuiyl (mgr.14180) 1377 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:52.972 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:53 smithi040 bash[24841]: cluster 2023-12-08T23:13:51.935832+0000 mgr.smithi040.evuiyl (mgr.14180) 1378 : cluster [DBG] pgmap v897: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:53 smithi149 bash[28710]: cluster 2023-12-08T23:13:51.935832+0000 mgr.smithi040.evuiyl (mgr.14180) 1378 : cluster [DBG] pgmap v897: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:56.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:55 smithi040 bash[24841]: cluster 2023-12-08T23:13:53.936809+0000 mgr.smithi040.evuiyl (mgr.14180) 1379 : cluster [DBG] pgmap v898: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:55 smithi149 bash[28710]: cluster 2023-12-08T23:13:53.936809+0000 mgr.smithi040.evuiyl (mgr.14180) 1379 : cluster [DBG] pgmap v898: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 172 B/s rd, 0 op/s 2023-12-08T23:13:56.108 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:13:56.108 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:13:56.876 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:13:57.878 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:13:58.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:57 smithi040 bash[24841]: cluster 2023-12-08T23:13:55.937891+0000 mgr.smithi040.evuiyl (mgr.14180) 1380 : cluster [DBG] pgmap v899: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:58.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:57 smithi040 bash[24841]: audit 2023-12-08T23:13:56.091804+0000 mgr.smithi040.evuiyl (mgr.14180) 1381 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:58.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:57 smithi149 bash[28710]: cluster 2023-12-08T23:13:55.937891+0000 mgr.smithi040.evuiyl (mgr.14180) 1380 : cluster [DBG] pgmap v899: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:13:58.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:57 smithi149 bash[28710]: audit 2023-12-08T23:13:56.091804+0000 mgr.smithi040.evuiyl (mgr.14180) 1381 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:13:59.968 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:13:59 smithi040 bash[24841]: cluster 2023-12-08T23:13:57.939199+0000 mgr.smithi040.evuiyl (mgr.14180) 1382 : cluster [DBG] pgmap v900: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:00.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:13:59 smithi149 bash[28710]: cluster 2023-12-08T23:13:57.939199+0000 mgr.smithi040.evuiyl (mgr.14180) 1382 : cluster [DBG] pgmap v900: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:01.254 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:01.255 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:01.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:01 smithi040 bash[24841]: cluster 2023-12-08T23:13:59.940137+0000 mgr.smithi040.evuiyl (mgr.14180) 1383 : cluster [DBG] pgmap v901: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:02.063 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:01 smithi149 bash[28710]: cluster 2023-12-08T23:13:59.940137+0000 mgr.smithi040.evuiyl (mgr.14180) 1383 : cluster [DBG] pgmap v901: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:03.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:02 smithi040 bash[24841]: audit 2023-12-08T23:14:01.242817+0000 mgr.smithi040.evuiyl (mgr.14180) 1384 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:03.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:02 smithi149 bash[28710]: audit 2023-12-08T23:14:01.242817+0000 mgr.smithi040.evuiyl (mgr.14180) 1384 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:03.064 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:04.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:03 smithi040 bash[24841]: cluster 2023-12-08T23:14:01.941271+0000 mgr.smithi040.evuiyl (mgr.14180) 1385 : cluster [DBG] pgmap v902: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:04.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:03 smithi149 bash[28710]: cluster 2023-12-08T23:14:01.941271+0000 mgr.smithi040.evuiyl (mgr.14180) 1385 : cluster [DBG] pgmap v902: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:04.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:04 smithi040 bash[24841]: cluster 2023-12-08T23:14:03.942487+0000 mgr.smithi040.evuiyl (mgr.14180) 1386 : cluster [DBG] pgmap v903: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:05.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:04 smithi149 bash[28710]: cluster 2023-12-08T23:14:03.942487+0000 mgr.smithi040.evuiyl (mgr.14180) 1386 : cluster [DBG] pgmap v903: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:06.322 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:06.322 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:07.171 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:07.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:07 smithi040 bash[24841]: cluster 2023-12-08T23:14:05.943628+0000 mgr.smithi040.evuiyl (mgr.14180) 1387 : cluster [DBG] pgmap v904: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:07.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:07 smithi040 bash[24841]: audit 2023-12-08T23:14:06.303875+0000 mgr.smithi040.evuiyl (mgr.14180) 1388 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:07.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:07 smithi149 bash[28710]: cluster 2023-12-08T23:14:05.943628+0000 mgr.smithi040.evuiyl (mgr.14180) 1387 : cluster [DBG] pgmap v904: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:07.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:07 smithi149 bash[28710]: audit 2023-12-08T23:14:06.303875+0000 mgr.smithi040.evuiyl (mgr.14180) 1388 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:08.172 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:10.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:09 smithi040 bash[24841]: cluster 2023-12-08T23:14:07.944775+0000 mgr.smithi040.evuiyl (mgr.14180) 1389 : cluster [DBG] pgmap v905: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:10.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:09 smithi149 bash[28710]: cluster 2023-12-08T23:14:07.944775+0000 mgr.smithi040.evuiyl (mgr.14180) 1389 : cluster [DBG] pgmap v905: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:11.410 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:11.411 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:11.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:11 smithi040 bash[24841]: cluster 2023-12-08T23:14:09.945656+0000 mgr.smithi040.evuiyl (mgr.14180) 1390 : cluster [DBG] pgmap v906: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:11 smithi149 bash[28710]: cluster 2023-12-08T23:14:09.945656+0000 mgr.smithi040.evuiyl (mgr.14180) 1390 : cluster [DBG] pgmap v906: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:12.204 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:13.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:12 smithi040 bash[24841]: audit 2023-12-08T23:14:11.394324+0000 mgr.smithi040.evuiyl (mgr.14180) 1391 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:13.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:12 smithi149 bash[28710]: audit 2023-12-08T23:14:11.394324+0000 mgr.smithi040.evuiyl (mgr.14180) 1391 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:13.205 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:14.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:13 smithi040 bash[24841]: cluster 2023-12-08T23:14:11.946840+0000 mgr.smithi040.evuiyl (mgr.14180) 1392 : cluster [DBG] pgmap v907: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:13 smithi149 bash[28710]: cluster 2023-12-08T23:14:11.946840+0000 mgr.smithi040.evuiyl (mgr.14180) 1392 : cluster [DBG] pgmap v907: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:15.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:14 smithi040 bash[24841]: cluster 2023-12-08T23:14:13.947846+0000 mgr.smithi040.evuiyl (mgr.14180) 1393 : cluster [DBG] pgmap v908: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:15.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:14 smithi149 bash[28710]: cluster 2023-12-08T23:14:13.947846+0000 mgr.smithi040.evuiyl (mgr.14180) 1393 : cluster [DBG] pgmap v908: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:16.545 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:16.546 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:17.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:17 smithi040 bash[24841]: cluster 2023-12-08T23:14:15.949013+0000 mgr.smithi040.evuiyl (mgr.14180) 1394 : cluster [DBG] pgmap v909: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:17.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:17 smithi040 bash[24841]: audit 2023-12-08T23:14:16.529478+0000 mgr.smithi040.evuiyl (mgr.14180) 1395 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:17.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:17 smithi149 bash[28710]: cluster 2023-12-08T23:14:15.949013+0000 mgr.smithi040.evuiyl (mgr.14180) 1394 : cluster [DBG] pgmap v909: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:17.314 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:17 smithi149 bash[28710]: audit 2023-12-08T23:14:16.529478+0000 mgr.smithi040.evuiyl (mgr.14180) 1395 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:17.364 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:18.364 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:20.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:19 smithi040 bash[24841]: cluster 2023-12-08T23:14:17.950153+0000 mgr.smithi040.evuiyl (mgr.14180) 1396 : cluster [DBG] pgmap v910: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:19 smithi149 bash[28710]: cluster 2023-12-08T23:14:17.950153+0000 mgr.smithi040.evuiyl (mgr.14180) 1396 : cluster [DBG] pgmap v910: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:21.479 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:21.479 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:21.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:21 smithi040 bash[24841]: cluster 2023-12-08T23:14:19.951607+0000 mgr.smithi040.evuiyl (mgr.14180) 1397 : cluster [DBG] pgmap v911: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:21 smithi149 bash[28710]: cluster 2023-12-08T23:14:19.951607+0000 mgr.smithi040.evuiyl (mgr.14180) 1397 : cluster [DBG] pgmap v911: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:22.329 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:22 smithi040 bash[24841]: audit 2023-12-08T23:14:21.462790+0000 mgr.smithi040.evuiyl (mgr.14180) 1398 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:23.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:22 smithi149 bash[28710]: audit 2023-12-08T23:14:21.462790+0000 mgr.smithi040.evuiyl (mgr.14180) 1398 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:23.330 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:24.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:23 smithi040 bash[24841]: cluster 2023-12-08T23:14:21.952834+0000 mgr.smithi040.evuiyl (mgr.14180) 1399 : cluster [DBG] pgmap v912: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:24.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:23 smithi149 bash[28710]: cluster 2023-12-08T23:14:21.952834+0000 mgr.smithi040.evuiyl (mgr.14180) 1399 : cluster [DBG] pgmap v912: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:26.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:25 smithi040 bash[24841]: cluster 2023-12-08T23:14:23.953752+0000 mgr.smithi040.evuiyl (mgr.14180) 1400 : cluster [DBG] pgmap v913: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:25 smithi149 bash[28710]: cluster 2023-12-08T23:14:23.953752+0000 mgr.smithi040.evuiyl (mgr.14180) 1400 : cluster [DBG] pgmap v913: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:26.596 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:26.597 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:26 smithi040 bash[24841]: cluster 2023-12-08T23:14:25.954632+0000 mgr.smithi040.evuiyl (mgr.14180) 1401 : cluster [DBG] pgmap v914: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:26 smithi040 bash[24841]: audit 2023-12-08T23:14:26.585360+0000 mgr.smithi040.evuiyl (mgr.14180) 1402 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:26 smithi149 bash[28710]: cluster 2023-12-08T23:14:25.954632+0000 mgr.smithi040.evuiyl (mgr.14180) 1401 : cluster [DBG] pgmap v914: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:26 smithi149 bash[28710]: audit 2023-12-08T23:14:26.585360+0000 mgr.smithi040.evuiyl (mgr.14180) 1402 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:27.377 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:28.378 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:30.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:29 smithi040 bash[24841]: cluster 2023-12-08T23:14:27.955910+0000 mgr.smithi040.evuiyl (mgr.14180) 1403 : cluster [DBG] pgmap v915: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:30.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:29 smithi149 bash[28710]: cluster 2023-12-08T23:14:27.955910+0000 mgr.smithi040.evuiyl (mgr.14180) 1403 : cluster [DBG] pgmap v915: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:31.398 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:31.399 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:31.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:31 smithi040 bash[24841]: cluster 2023-12-08T23:14:29.956859+0000 mgr.smithi040.evuiyl (mgr.14180) 1404 : cluster [DBG] pgmap v916: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:31 smithi149 bash[28710]: cluster 2023-12-08T23:14:29.956859+0000 mgr.smithi040.evuiyl (mgr.14180) 1404 : cluster [DBG] pgmap v916: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:32.264 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:33.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:32 smithi040 bash[24841]: audit 2023-12-08T23:14:31.382357+0000 mgr.smithi040.evuiyl (mgr.14180) 1405 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:32 smithi149 bash[28710]: audit 2023-12-08T23:14:31.382357+0000 mgr.smithi040.evuiyl (mgr.14180) 1405 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:33.265 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:34.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:33 smithi040 bash[24841]: cluster 2023-12-08T23:14:31.958056+0000 mgr.smithi040.evuiyl (mgr.14180) 1406 : cluster [DBG] pgmap v917: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:33 smithi149 bash[28710]: cluster 2023-12-08T23:14:31.958056+0000 mgr.smithi040.evuiyl (mgr.14180) 1406 : cluster [DBG] pgmap v917: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:35.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:34 smithi040 bash[24841]: cluster 2023-12-08T23:14:33.959293+0000 mgr.smithi040.evuiyl (mgr.14180) 1407 : cluster [DBG] pgmap v918: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:34 smithi149 bash[28710]: cluster 2023-12-08T23:14:33.959293+0000 mgr.smithi040.evuiyl (mgr.14180) 1407 : cluster [DBG] pgmap v918: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:36.466 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:36.466 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:37.288 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:37 smithi040 bash[24841]: cluster 2023-12-08T23:14:35.960455+0000 mgr.smithi040.evuiyl (mgr.14180) 1408 : cluster [DBG] pgmap v919: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:37.288 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:37 smithi040 bash[24841]: audit 2023-12-08T23:14:36.450565+0000 mgr.smithi040.evuiyl (mgr.14180) 1409 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:37.289 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:37.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:37 smithi149 bash[28710]: cluster 2023-12-08T23:14:35.960455+0000 mgr.smithi040.evuiyl (mgr.14180) 1408 : cluster [DBG] pgmap v919: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:37.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:37 smithi149 bash[28710]: audit 2023-12-08T23:14:36.450565+0000 mgr.smithi040.evuiyl (mgr.14180) 1409 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:38.291 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:39.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:39 smithi040 bash[24841]: cluster 2023-12-08T23:14:37.961651+0000 mgr.smithi040.evuiyl (mgr.14180) 1410 : cluster [DBG] pgmap v920: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:39 smithi149 bash[28710]: cluster 2023-12-08T23:14:37.961651+0000 mgr.smithi040.evuiyl (mgr.14180) 1410 : cluster [DBG] pgmap v920: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:41.515 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:41.515 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:41.980 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:41 smithi040 bash[24841]: cluster 2023-12-08T23:14:39.962469+0000 mgr.smithi040.evuiyl (mgr.14180) 1411 : cluster [DBG] pgmap v921: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:42.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:41 smithi149 bash[28710]: cluster 2023-12-08T23:14:39.962469+0000 mgr.smithi040.evuiyl (mgr.14180) 1411 : cluster [DBG] pgmap v921: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:14:42.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:43.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:42 smithi040 bash[24841]: audit 2023-12-08T23:14:41.499647+0000 mgr.smithi040.evuiyl (mgr.14180) 1412 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:43.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:42 smithi149 bash[28710]: audit 2023-12-08T23:14:41.499647+0000 mgr.smithi040.evuiyl (mgr.14180) 1412 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:43.253 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:43.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:43 smithi040 bash[24841]: cluster 2023-12-08T23:14:41.963625+0000 mgr.smithi040.evuiyl (mgr.14180) 1413 : cluster [DBG] pgmap v922: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:43 smithi149 bash[28710]: cluster 2023-12-08T23:14:41.963625+0000 mgr.smithi040.evuiyl (mgr.14180) 1413 : cluster [DBG] pgmap v922: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:45.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:43.936326+0000 mon.smithi040 (mon.0) 1010 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: cluster 2023-12-08T23:14:43.964576+0000 mgr.smithi040.evuiyl (mgr.14180) 1414 : cluster [DBG] pgmap v923: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:44.234012+0000 mon.smithi040 (mon.0) 1011 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:44.235573+0000 mon.smithi040 (mon.0) 1012 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:44.242010+0000 mon.smithi040 (mon.0) 1013 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: cluster 2023-12-08T23:14:44.242799+0000 mgr.smithi040.evuiyl (mgr.14180) 1415 : cluster [DBG] pgmap v924: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:44.247270+0000 mon.smithi040 (mon.0) 1014 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: audit 2023-12-08T23:14:44.259463+0000 mon.smithi040 (mon.0) 1015 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:45.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:44 smithi040 bash[24841]: cephadm 2023-12-08T23:14:44.262654+0000 mgr.smithi040.evuiyl (mgr.14180) 1416 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mozqhc on smithi149 2023-12-08T23:14:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:43.936326+0000 mon.smithi040 (mon.0) 1010 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: cluster 2023-12-08T23:14:43.964576+0000 mgr.smithi040.evuiyl (mgr.14180) 1414 : cluster [DBG] pgmap v923: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:44.234012+0000 mon.smithi040 (mon.0) 1011 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:44.235573+0000 mon.smithi040 (mon.0) 1012 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:44.242010+0000 mon.smithi040 (mon.0) 1013 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: cluster 2023-12-08T23:14:44.242799+0000 mgr.smithi040.evuiyl (mgr.14180) 1415 : cluster [DBG] pgmap v924: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:44.247270+0000 mon.smithi040 (mon.0) 1014 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: audit 2023-12-08T23:14:44.259463+0000 mon.smithi040 (mon.0) 1015 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:45.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:44 smithi149 bash[28710]: cephadm 2023-12-08T23:14:44.262654+0000 mgr.smithi040.evuiyl (mgr.14180) 1416 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.mozqhc on smithi149 2023-12-08T23:14:46.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:45 smithi040 bash[24841]: cluster 2023-12-08T23:14:44.681451+0000 mon.smithi040 (mon.0) 1016 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:14:46.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:45 smithi040 bash[24841]: cluster 2023-12-08T23:14:44.681516+0000 mon.smithi040 (mon.0) 1017 : cluster [INF] Cluster is now healthy 2023-12-08T23:14:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:45 smithi149 bash[28710]: cluster 2023-12-08T23:14:44.681451+0000 mon.smithi040 (mon.0) 1016 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:14:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:45 smithi149 bash[28710]: cluster 2023-12-08T23:14:44.681516+0000 mon.smithi040 (mon.0) 1017 : cluster [INF] Cluster is now healthy 2023-12-08T23:14:46.450 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:46.450 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:12:35.775628Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.ymltnz on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:46 smithi040 bash[24841]: cluster 2023-12-08T23:14:46.243634+0000 mgr.smithi040.evuiyl (mgr.14180) 1417 : cluster [DBG] pgmap v925: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:46.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:46 smithi040 bash[24841]: audit 2023-12-08T23:14:46.433569+0000 mgr.smithi040.evuiyl (mgr.14180) 1418 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:46 smithi149 bash[28710]: cluster 2023-12-08T23:14:46.243634+0000 mgr.smithi040.evuiyl (mgr.14180) 1417 : cluster [DBG] pgmap v925: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:46 smithi149 bash[28710]: audit 2023-12-08T23:14:46.433569+0000 mgr.smithi040.evuiyl (mgr.14180) 1418 : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:47.258 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:48.260 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:48.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:48 smithi149 bash[28710]: audit 2023-12-08T23:14:47.454689+0000 mon.smithi040 (mon.0) 1018 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:48.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:48 smithi149 bash[28710]: audit 2023-12-08T23:14:48.322403+0000 mon.smithi040 (mon.0) 1019 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mozqhc"}]: dispatch 2023-12-08T23:14:48.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:48 smithi040 bash[24841]: audit 2023-12-08T23:14:47.454689+0000 mon.smithi040 (mon.0) 1018 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:48.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:48 smithi040 bash[24841]: audit 2023-12-08T23:14:48.322403+0000 mon.smithi040 (mon.0) 1019 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.mozqhc"}]: dispatch 2023-12-08T23:14:49.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: cluster 2023-12-08T23:14:48.244564+0000 mgr.smithi040.evuiyl (mgr.14180) 1419 : cluster [DBG] pgmap v926: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: cephadm 2023-12-08T23:14:48.321056+0000 mgr.smithi040.evuiyl (mgr.14180) 1420 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:49.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: cephadm 2023-12-08T23:14:48.321683+0000 mgr.smithi040.evuiyl (mgr.14180) 1421 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: cephadm 2023-12-08T23:14:48.324128+0000 mgr.smithi040.evuiyl (mgr.14180) 1422 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:49.766 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:49.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:49.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:49.767 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:49 smithi040 bash[24841]: cephadm 2023-12-08T23:14:48.328889+0000 mgr.smithi040.evuiyl (mgr.14180) 1423 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.grfarb on smithi040 2023-12-08T23:14:50.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: cluster 2023-12-08T23:14:48.244564+0000 mgr.smithi040.evuiyl (mgr.14180) 1419 : cluster [DBG] pgmap v926: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:50.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: cephadm 2023-12-08T23:14:48.321056+0000 mgr.smithi040.evuiyl (mgr.14180) 1420 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:14:50.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: cephadm 2023-12-08T23:14:48.321683+0000 mgr.smithi040.evuiyl (mgr.14180) 1421 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: cephadm 2023-12-08T23:14:48.324128+0000 mgr.smithi040.evuiyl (mgr.14180) 1422 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.mozqhc ... 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:50.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:49 smithi149 bash[28710]: cephadm 2023-12-08T23:14:48.328889+0000 mgr.smithi040.evuiyl (mgr.14180) 1423 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.grfarb on smithi040 2023-12-08T23:14:51.663 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:51.663 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:40.019521Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.qalemr on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-qalemr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.qalemr\nDeploy daemon haproxy.nfs.foo.smithi149.qalemr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.924949Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.rqqgik on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-rqqgik\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.rqqgik\nDeploy daemon haproxy.nfs.foo.smithi040.rqqgik ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:13:43.927294Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gknypy on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:51.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:51 smithi040 bash[24841]: cluster 2023-12-08T23:14:50.245683+0000 mgr.smithi040.evuiyl (mgr.14180) 1424 : cluster [DBG] pgmap v927: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:52.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:51 smithi149 bash[28710]: cluster 2023-12-08T23:14:50.245683+0000 mgr.smithi040.evuiyl (mgr.14180) 1424 : cluster [DBG] pgmap v927: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:52.503 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:52.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:52 smithi040 bash[24841]: audit 2023-12-08T23:14:51.647682+0000 mgr.smithi040.evuiyl (mgr.14180) 1425 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:52.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:52 smithi040 bash[24841]: audit 2023-12-08T23:14:52.557348+0000 mon.smithi040 (mon.0) 1020 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.grfarb"}]: dispatch 2023-12-08T23:14:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:52 smithi149 bash[28710]: audit 2023-12-08T23:14:51.647682+0000 mgr.smithi040.evuiyl (mgr.14180) 1425 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:52 smithi149 bash[28710]: audit 2023-12-08T23:14:52.557348+0000 mon.smithi040 (mon.0) 1020 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.grfarb"}]: dispatch 2023-12-08T23:14:53.504 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cluster 2023-12-08T23:14:52.246782+0000 mgr.smithi040.evuiyl (mgr.14180) 1426 : cluster [DBG] pgmap v928: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cephadm 2023-12-08T23:14:52.556047+0000 mgr.smithi040.evuiyl (mgr.14180) 1427 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cephadm 2023-12-08T23:14:52.556725+0000 mgr.smithi040.evuiyl (mgr.14180) 1428 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cephadm 2023-12-08T23:14:52.558827+0000 mgr.smithi040.evuiyl (mgr.14180) 1429 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cephadm 2023-12-08T23:14:52.563010+0000 mgr.smithi040.evuiyl (mgr.14180) 1430 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cephadm 2023-12-08T23:14:52.566587+0000 mgr.smithi040.evuiyl (mgr.14180) 1431 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cluster 2023-12-08T23:14:52.567812+0000 mgr.smithi040.evuiyl (mgr.14180) 1432 : cluster [DBG] pgmap v929: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 238 B/s rd, 0 op/s 2023-12-08T23:14:54.016 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:53 smithi040 bash[24841]: cluster 2023-12-08T23:14:52.678812+0000 mon.smithi040 (mon.0) 1021 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cluster 2023-12-08T23:14:52.246782+0000 mgr.smithi040.evuiyl (mgr.14180) 1426 : cluster [DBG] pgmap v928: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cephadm 2023-12-08T23:14:52.556047+0000 mgr.smithi040.evuiyl (mgr.14180) 1427 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cephadm 2023-12-08T23:14:52.556725+0000 mgr.smithi040.evuiyl (mgr.14180) 1428 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cephadm 2023-12-08T23:14:52.558827+0000 mgr.smithi040.evuiyl (mgr.14180) 1429 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.grfarb ... 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cephadm 2023-12-08T23:14:52.563010+0000 mgr.smithi040.evuiyl (mgr.14180) 1430 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cephadm 2023-12-08T23:14:52.566587+0000 mgr.smithi040.evuiyl (mgr.14180) 1431 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cluster 2023-12-08T23:14:52.567812+0000 mgr.smithi040.evuiyl (mgr.14180) 1432 : cluster [DBG] pgmap v929: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 238 B/s rd, 0 op/s 2023-12-08T23:14:54.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:53 smithi149 bash[28710]: cluster 2023-12-08T23:14:52.678812+0000 mon.smithi040 (mon.0) 1021 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:14:54.939 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:54 smithi040 bash[24841]: cluster 2023-12-08T23:14:54.569038+0000 mgr.smithi040.evuiyl (mgr.14180) 1433 : cluster [DBG] pgmap v930: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:14:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:54 smithi149 bash[28710]: cluster 2023-12-08T23:14:54.569038+0000 mgr.smithi040.evuiyl (mgr.14180) 1433 : cluster [DBG] pgmap v930: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:14:56.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:56 smithi040 bash[24841]: audit 2023-12-08T23:14:55.335695+0000 mon.smithi040 (mon.0) 1022 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:56.778 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:14:56.778 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:14:56.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:56 smithi149 bash[28710]: audit 2023-12-08T23:14:55.335695+0000 mon.smithi040 (mon.0) 1022 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:14:57.567 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:14:57.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:57 smithi040 bash[24841]: cluster 2023-12-08T23:14:56.570093+0000 mgr.smithi040.evuiyl (mgr.14180) 1434 : cluster [DBG] pgmap v931: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:14:57.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:57 smithi149 bash[28710]: cluster 2023-12-08T23:14:56.570093+0000 mgr.smithi040.evuiyl (mgr.14180) 1434 : cluster [DBG] pgmap v931: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:14:58.568 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:14:59.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:58 smithi040 bash[24841]: audit 2023-12-08T23:14:56.763096+0000 mgr.smithi040.evuiyl (mgr.14180) 1435 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:58 smithi149 bash[28710]: audit 2023-12-08T23:14:56.763096+0000 mgr.smithi040.evuiyl (mgr.14180) 1435 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:14:59.988 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:14:59 smithi040 bash[24841]: cluster 2023-12-08T23:14:58.571286+0000 mgr.smithi040.evuiyl (mgr.14180) 1436 : cluster [DBG] pgmap v932: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:00.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:14:59 smithi149 bash[28710]: cluster 2023-12-08T23:14:58.571286+0000 mgr.smithi040.evuiyl (mgr.14180) 1436 : cluster [DBG] pgmap v932: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:01.853 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:01.854 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:01.934 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:01 smithi040 bash[24841]: cluster 2023-12-08T23:15:00.572145+0000 mgr.smithi040.evuiyl (mgr.14180) 1437 : cluster [DBG] pgmap v933: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:01 smithi149 bash[28710]: cluster 2023-12-08T23:15:00.572145+0000 mgr.smithi040.evuiyl (mgr.14180) 1437 : cluster [DBG] pgmap v933: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:02.694 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:03.695 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:03 smithi040 bash[24841]: audit 2023-12-08T23:15:01.837333+0000 mgr.smithi040.evuiyl (mgr.14180) 1438 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:03 smithi040 bash[24841]: audit 2023-12-08T23:15:02.454607+0000 mon.smithi040 (mon.0) 1023 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:03.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:03 smithi040 bash[24841]: cluster 2023-12-08T23:15:02.573326+0000 mgr.smithi040.evuiyl (mgr.14180) 1439 : cluster [DBG] pgmap v934: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:03.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:03 smithi149 bash[28710]: audit 2023-12-08T23:15:01.837333+0000 mgr.smithi040.evuiyl (mgr.14180) 1438 : audit [DBG] from='client.15624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:03.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:03 smithi149 bash[28710]: audit 2023-12-08T23:15:02.454607+0000 mon.smithi040 (mon.0) 1023 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:03.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:03 smithi149 bash[28710]: cluster 2023-12-08T23:15:02.573326+0000 mgr.smithi040.evuiyl (mgr.14180) 1439 : cluster [DBG] pgmap v934: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:15:06.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:05 smithi040 bash[24841]: cluster 2023-12-08T23:15:04.574706+0000 mgr.smithi040.evuiyl (mgr.14180) 1440 : cluster [DBG] pgmap v935: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:06.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:05 smithi149 bash[28710]: cluster 2023-12-08T23:15:04.574706+0000 mgr.smithi040.evuiyl (mgr.14180) 1440 : cluster [DBG] pgmap v935: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:06.816 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:06.817 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:07.583 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:08.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:07 smithi040 bash[24841]: cluster 2023-12-08T23:15:06.576002+0000 mgr.smithi040.evuiyl (mgr.14180) 1441 : cluster [DBG] pgmap v936: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:08.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:07 smithi149 bash[28710]: cluster 2023-12-08T23:15:06.576002+0000 mgr.smithi040.evuiyl (mgr.14180) 1441 : cluster [DBG] pgmap v936: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:08.583 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:09.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:08 smithi040 bash[24841]: audit 2023-12-08T23:15:06.805616+0000 mgr.smithi040.evuiyl (mgr.14180) 1442 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:09.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:08 smithi149 bash[28710]: audit 2023-12-08T23:15:06.805616+0000 mgr.smithi040.evuiyl (mgr.14180) 1442 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:10.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:09 smithi040 bash[24841]: cluster 2023-12-08T23:15:08.577143+0000 mgr.smithi040.evuiyl (mgr.14180) 1443 : cluster [DBG] pgmap v937: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:09 smithi149 bash[28710]: cluster 2023-12-08T23:15:08.577143+0000 mgr.smithi040.evuiyl (mgr.14180) 1443 : cluster [DBG] pgmap v937: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:11.825 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:11.825 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:11.981 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:11 smithi040 bash[24841]: cluster 2023-12-08T23:15:10.578116+0000 mgr.smithi040.evuiyl (mgr.14180) 1444 : cluster [DBG] pgmap v938: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:11 smithi149 bash[28710]: cluster 2023-12-08T23:15:10.578116+0000 mgr.smithi040.evuiyl (mgr.14180) 1444 : cluster [DBG] pgmap v938: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:12.707 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:13.708 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:14.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:13 smithi040 bash[24841]: audit 2023-12-08T23:15:11.810259+0000 mgr.smithi040.evuiyl (mgr.14180) 1445 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:14.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:13 smithi040 bash[24841]: cluster 2023-12-08T23:15:12.579274+0000 mgr.smithi040.evuiyl (mgr.14180) 1446 : cluster [DBG] pgmap v939: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:14.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:13 smithi149 bash[28710]: audit 2023-12-08T23:15:11.810259+0000 mgr.smithi040.evuiyl (mgr.14180) 1445 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:14.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:13 smithi149 bash[28710]: cluster 2023-12-08T23:15:12.579274+0000 mgr.smithi040.evuiyl (mgr.14180) 1446 : cluster [DBG] pgmap v939: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:16.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:15 smithi040 bash[24841]: cluster 2023-12-08T23:15:14.580244+0000 mgr.smithi040.evuiyl (mgr.14180) 1447 : cluster [DBG] pgmap v940: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:16.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:15 smithi149 bash[28710]: cluster 2023-12-08T23:15:14.580244+0000 mgr.smithi040.evuiyl (mgr.14180) 1447 : cluster [DBG] pgmap v940: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:16.881 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:16.882 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:17.712 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:18.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:17 smithi040 bash[24841]: cluster 2023-12-08T23:15:16.581387+0000 mgr.smithi040.evuiyl (mgr.14180) 1448 : cluster [DBG] pgmap v941: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:18.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:17 smithi149 bash[28710]: cluster 2023-12-08T23:15:16.581387+0000 mgr.smithi040.evuiyl (mgr.14180) 1448 : cluster [DBG] pgmap v941: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:18.713 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:19.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:18 smithi040 bash[24841]: audit 2023-12-08T23:15:16.864659+0000 mgr.smithi040.evuiyl (mgr.14180) 1449 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:19.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:18 smithi040 bash[24841]: cluster 2023-12-08T23:15:18.582597+0000 mgr.smithi040.evuiyl (mgr.14180) 1450 : cluster [DBG] pgmap v942: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:18 smithi149 bash[28710]: audit 2023-12-08T23:15:16.864659+0000 mgr.smithi040.evuiyl (mgr.14180) 1449 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:18 smithi149 bash[28710]: cluster 2023-12-08T23:15:18.582597+0000 mgr.smithi040.evuiyl (mgr.14180) 1450 : cluster [DBG] pgmap v942: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:21.925 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:21.925 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:21.978 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:21 smithi040 bash[24841]: cluster 2023-12-08T23:15:20.583496+0000 mgr.smithi040.evuiyl (mgr.14180) 1451 : cluster [DBG] pgmap v943: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:21 smithi149 bash[28710]: cluster 2023-12-08T23:15:20.583496+0000 mgr.smithi040.evuiyl (mgr.14180) 1451 : cluster [DBG] pgmap v943: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:22.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:23.761 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:23.970 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:23 smithi040 bash[24841]: audit 2023-12-08T23:15:21.909402+0000 mgr.smithi040.evuiyl (mgr.14180) 1452 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:23.970 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:23 smithi040 bash[24841]: cluster 2023-12-08T23:15:22.584577+0000 mgr.smithi040.evuiyl (mgr.14180) 1453 : cluster [DBG] pgmap v944: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:23 smithi149 bash[28710]: audit 2023-12-08T23:15:21.909402+0000 mgr.smithi040.evuiyl (mgr.14180) 1452 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:23 smithi149 bash[28710]: cluster 2023-12-08T23:15:22.584577+0000 mgr.smithi040.evuiyl (mgr.14180) 1453 : cluster [DBG] pgmap v944: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:26.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:25 smithi040 bash[24841]: cluster 2023-12-08T23:15:24.585865+0000 mgr.smithi040.evuiyl (mgr.14180) 1454 : cluster [DBG] pgmap v945: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:25 smithi149 bash[28710]: cluster 2023-12-08T23:15:24.585865+0000 mgr.smithi040.evuiyl (mgr.14180) 1454 : cluster [DBG] pgmap v945: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:27.042 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:27.042 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:27.799 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:28.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:27 smithi040 bash[24841]: cluster 2023-12-08T23:15:26.587303+0000 mgr.smithi040.evuiyl (mgr.14180) 1455 : cluster [DBG] pgmap v946: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:28.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:27 smithi149 bash[28710]: cluster 2023-12-08T23:15:26.587303+0000 mgr.smithi040.evuiyl (mgr.14180) 1455 : cluster [DBG] pgmap v946: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:28.800 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:29.002 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:28 smithi040 bash[24841]: audit 2023-12-08T23:15:27.029492+0000 mgr.smithi040.evuiyl (mgr.14180) 1456 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:29.002 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:28 smithi040 bash[24841]: cluster 2023-12-08T23:15:28.588504+0000 mgr.smithi040.evuiyl (mgr.14180) 1457 : cluster [DBG] pgmap v947: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:28 smithi149 bash[28710]: audit 2023-12-08T23:15:27.029492+0000 mgr.smithi040.evuiyl (mgr.14180) 1456 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:28 smithi149 bash[28710]: cluster 2023-12-08T23:15:28.588504+0000 mgr.smithi040.evuiyl (mgr.14180) 1457 : cluster [DBG] pgmap v947: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:31.980 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:31 smithi040 bash[24841]: cluster 2023-12-08T23:15:30.589621+0000 mgr.smithi040.evuiyl (mgr.14180) 1458 : cluster [DBG] pgmap v948: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:31 smithi149 bash[28710]: cluster 2023-12-08T23:15:30.589621+0000 mgr.smithi040.evuiyl (mgr.14180) 1458 : cluster [DBG] pgmap v948: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:32.096 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:32.096 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:32.914 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:33.915 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:34.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:33 smithi040 bash[24841]: audit 2023-12-08T23:15:32.081049+0000 mgr.smithi040.evuiyl (mgr.14180) 1459 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:34.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:33 smithi040 bash[24841]: cluster 2023-12-08T23:15:32.590848+0000 mgr.smithi040.evuiyl (mgr.14180) 1460 : cluster [DBG] pgmap v949: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:33 smithi149 bash[28710]: audit 2023-12-08T23:15:32.081049+0000 mgr.smithi040.evuiyl (mgr.14180) 1459 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:33 smithi149 bash[28710]: cluster 2023-12-08T23:15:32.590848+0000 mgr.smithi040.evuiyl (mgr.14180) 1460 : cluster [DBG] pgmap v949: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:35.968 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:35 smithi040 bash[24841]: cluster 2023-12-08T23:15:34.592238+0000 mgr.smithi040.evuiyl (mgr.14180) 1461 : cluster [DBG] pgmap v950: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:36.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:35 smithi149 bash[28710]: cluster 2023-12-08T23:15:34.592238+0000 mgr.smithi040.evuiyl (mgr.14180) 1461 : cluster [DBG] pgmap v950: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:37.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:36 smithi040 bash[24841]: cluster 2023-12-08T23:15:36.593116+0000 mgr.smithi040.evuiyl (mgr.14180) 1462 : cluster [DBG] pgmap v951: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:37.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:36 smithi149 bash[28710]: cluster 2023-12-08T23:15:36.593116+0000 mgr.smithi040.evuiyl (mgr.14180) 1462 : cluster [DBG] pgmap v951: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:37.364 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:37.365 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:38.182 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:39.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:38 smithi040 bash[24841]: audit 2023-12-08T23:15:37.346764+0000 mgr.smithi040.evuiyl (mgr.14180) 1463 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:39.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:38 smithi149 bash[28710]: audit 2023-12-08T23:15:37.346764+0000 mgr.smithi040.evuiyl (mgr.14180) 1463 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:39.183 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:40.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:39 smithi040 bash[24841]: cluster 2023-12-08T23:15:38.594293+0000 mgr.smithi040.evuiyl (mgr.14180) 1464 : cluster [DBG] pgmap v952: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:39 smithi149 bash[28710]: cluster 2023-12-08T23:15:38.594293+0000 mgr.smithi040.evuiyl (mgr.14180) 1464 : cluster [DBG] pgmap v952: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:41.980 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:41 smithi040 bash[24841]: cluster 2023-12-08T23:15:40.595669+0000 mgr.smithi040.evuiyl (mgr.14180) 1465 : cluster [DBG] pgmap v953: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:42.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:41 smithi149 bash[28710]: cluster 2023-12-08T23:15:40.595669+0000 mgr.smithi040.evuiyl (mgr.14180) 1465 : cluster [DBG] pgmap v953: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:42.417 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:42.417 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:43.301 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:44.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:43 smithi040 bash[24841]: audit 2023-12-08T23:15:42.402441+0000 mgr.smithi040.evuiyl (mgr.14180) 1466 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:44.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:43 smithi040 bash[24841]: cluster 2023-12-08T23:15:42.596937+0000 mgr.smithi040.evuiyl (mgr.14180) 1467 : cluster [DBG] pgmap v954: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:43 smithi149 bash[28710]: audit 2023-12-08T23:15:42.402441+0000 mgr.smithi040.evuiyl (mgr.14180) 1466 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:43 smithi149 bash[28710]: cluster 2023-12-08T23:15:42.596937+0000 mgr.smithi040.evuiyl (mgr.14180) 1467 : cluster [DBG] pgmap v954: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:44.302 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:45.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:45 smithi040 bash[24841]: cluster 2023-12-08T23:15:44.597693+0000 mgr.smithi040.evuiyl (mgr.14180) 1468 : cluster [DBG] pgmap v955: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:46.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:45 smithi149 bash[28710]: cluster 2023-12-08T23:15:44.597693+0000 mgr.smithi040.evuiyl (mgr.14180) 1468 : cluster [DBG] pgmap v955: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:47.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:46 smithi040 bash[24841]: cluster 2023-12-08T23:15:46.598500+0000 mgr.smithi040.evuiyl (mgr.14180) 1469 : cluster [DBG] pgmap v956: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:47.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:46 smithi149 bash[28710]: cluster 2023-12-08T23:15:46.598500+0000 mgr.smithi040.evuiyl (mgr.14180) 1469 : cluster [DBG] pgmap v956: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:47.677 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:47.677 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:48.427 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:49.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:48 smithi040 bash[24841]: audit 2023-12-08T23:15:47.661150+0000 mgr.smithi040.evuiyl (mgr.14180) 1470 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:48 smithi149 bash[28710]: audit 2023-12-08T23:15:47.661150+0000 mgr.smithi040.evuiyl (mgr.14180) 1470 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:49.428 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:50.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:49 smithi040 bash[24841]: cluster 2023-12-08T23:15:48.599830+0000 mgr.smithi040.evuiyl (mgr.14180) 1471 : cluster [DBG] pgmap v957: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:49 smithi149 bash[28710]: cluster 2023-12-08T23:15:48.599830+0000 mgr.smithi040.evuiyl (mgr.14180) 1471 : cluster [DBG] pgmap v957: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:50.988 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:50 smithi040 bash[24841]: cluster 2023-12-08T23:15:50.600608+0000 mgr.smithi040.evuiyl (mgr.14180) 1472 : cluster [DBG] pgmap v958: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:50 smithi149 bash[28710]: cluster 2023-12-08T23:15:50.600608+0000 mgr.smithi040.evuiyl (mgr.14180) 1472 : cluster [DBG] pgmap v958: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:15:52.570 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:52.571 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:13:43.930146Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.fzbmtq on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:53.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:52 smithi040 bash[24841]: audit 2023-12-08T23:15:52.571712+0000 mon.smithi040 (mon.0) 1024 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:15:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:52 smithi149 bash[28710]: audit 2023-12-08T23:15:52.571712+0000 mon.smithi040 (mon.0) 1024 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:15:53.374 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:52.559757+0000 mgr.smithi040.evuiyl (mgr.14180) 1473 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: cluster 2023-12-08T23:15:52.601392+0000 mgr.smithi040.evuiyl (mgr.14180) 1474 : cluster [DBG] pgmap v959: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:52.845446+0000 mon.smithi040 (mon.0) 1025 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:53.113416+0000 mon.smithi040 (mon.0) 1026 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:53.114786+0000 mon.smithi040 (mon.0) 1027 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:53.122229+0000 mon.smithi040 (mon.0) 1028 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:53.129952+0000 mon.smithi040 (mon.0) 1029 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:15:54.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:53 smithi040 bash[24841]: audit 2023-12-08T23:15:53.144709+0000 mon.smithi040 (mon.0) 1030 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:52.559757+0000 mgr.smithi040.evuiyl (mgr.14180) 1473 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: cluster 2023-12-08T23:15:52.601392+0000 mgr.smithi040.evuiyl (mgr.14180) 1474 : cluster [DBG] pgmap v959: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:52.845446+0000 mon.smithi040 (mon.0) 1025 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:53.113416+0000 mon.smithi040 (mon.0) 1026 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:53.114786+0000 mon.smithi040 (mon.0) 1027 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:53.122229+0000 mon.smithi040 (mon.0) 1028 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:53.129952+0000 mon.smithi040 (mon.0) 1029 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:15:54.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:53 smithi149 bash[28710]: audit 2023-12-08T23:15:53.144709+0000 mon.smithi040 (mon.0) 1030 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:15:54.375 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:15:55.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:54 smithi040 bash[24841]: cluster 2023-12-08T23:15:53.122907+0000 mgr.smithi040.evuiyl (mgr.14180) 1475 : cluster [DBG] pgmap v960: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:55.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:54 smithi040 bash[24841]: cephadm 2023-12-08T23:15:53.149214+0000 mgr.smithi040.evuiyl (mgr.14180) 1476 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.ycxmou on smithi149 2023-12-08T23:15:55.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:54 smithi040 bash[24841]: cluster 2023-12-08T23:15:54.119845+0000 mon.smithi040 (mon.0) 1031 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:15:55.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:54 smithi040 bash[24841]: cluster 2023-12-08T23:15:54.119912+0000 mon.smithi040 (mon.0) 1032 : cluster [INF] Cluster is now healthy 2023-12-08T23:15:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:54 smithi149 bash[28710]: cluster 2023-12-08T23:15:53.122907+0000 mgr.smithi040.evuiyl (mgr.14180) 1475 : cluster [DBG] pgmap v960: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:54 smithi149 bash[28710]: cephadm 2023-12-08T23:15:53.149214+0000 mgr.smithi040.evuiyl (mgr.14180) 1476 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.ycxmou on smithi149 2023-12-08T23:15:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:54 smithi149 bash[28710]: cluster 2023-12-08T23:15:54.119845+0000 mon.smithi040 (mon.0) 1031 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:15:55.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:54 smithi149 bash[28710]: cluster 2023-12-08T23:15:54.119912+0000 mon.smithi040 (mon.0) 1032 : cluster [INF] Cluster is now healthy 2023-12-08T23:15:55.930 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:55 smithi040 bash[24841]: cluster 2023-12-08T23:15:55.124033+0000 mgr.smithi040.evuiyl (mgr.14180) 1477 : cluster [DBG] pgmap v961: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:56.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:55 smithi149 bash[28710]: cluster 2023-12-08T23:15:55.124033+0000 mgr.smithi040.evuiyl (mgr.14180) 1477 : cluster [DBG] pgmap v961: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:57.749 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:15:57.749 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:48.323846Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.mozqhc on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-mozqhc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.mozqhc\nDeploy daemon haproxy.nfs.foo.smithi149.mozqhc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.558481Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.grfarb on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-grfarb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.grfarb\nDeploy daemon haproxy.nfs.foo.smithi040.grfarb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:14:52.562903Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.gnlkgt on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:15:58.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: cluster 2023-12-08T23:15:57.125137+0000 mgr.smithi040.evuiyl (mgr.14180) 1478 : cluster [DBG] pgmap v962: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:58.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: cephadm 2023-12-08T23:15:57.468382+0000 mgr.smithi040.evuiyl (mgr.14180) 1479 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.263 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.264 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: cephadm 2023-12-08T23:15:57.468973+0000 mgr.smithi040.evuiyl (mgr.14180) 1480 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: audit 2023-12-08T23:15:57.469719+0000 mon.smithi040 (mon.0) 1033 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.ycxmou"}]: dispatch 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: cephadm 2023-12-08T23:15:57.471463+0000 mgr.smithi040.evuiyl (mgr.14180) 1481 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.265 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.266 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:58 smithi040 bash[24841]: cephadm 2023-12-08T23:15:57.476289+0000 mgr.smithi040.evuiyl (mgr.14180) 1482 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ksqmse on smithi040 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: cluster 2023-12-08T23:15:57.125137+0000 mgr.smithi040.evuiyl (mgr.14180) 1478 : cluster [DBG] pgmap v962: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: cephadm 2023-12-08T23:15:57.468382+0000 mgr.smithi040.evuiyl (mgr.14180) 1479 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:15:58.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: cephadm 2023-12-08T23:15:57.468973+0000 mgr.smithi040.evuiyl (mgr.14180) 1480 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: audit 2023-12-08T23:15:57.469719+0000 mon.smithi040 (mon.0) 1033 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.ycxmou"}]: dispatch 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: cephadm 2023-12-08T23:15:57.471463+0000 mgr.smithi040.evuiyl (mgr.14180) 1481 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.ycxmou ... 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:15:58.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:58 smithi149 bash[28710]: cephadm 2023-12-08T23:15:57.476289+0000 mgr.smithi040.evuiyl (mgr.14180) 1482 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.ksqmse on smithi040 2023-12-08T23:15:58.569 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:15:59.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:15:59 smithi040 bash[24841]: audit 2023-12-08T23:15:57.738409+0000 mgr.smithi040.evuiyl (mgr.14180) 1483 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:59.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:15:59 smithi149 bash[28710]: audit 2023-12-08T23:15:57.738409+0000 mgr.smithi040.evuiyl (mgr.14180) 1483 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:15:59.570 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:00.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:00 smithi040 bash[24841]: cluster 2023-12-08T23:15:59.126170+0000 mgr.smithi040.evuiyl (mgr.14180) 1484 : cluster [DBG] pgmap v963: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:16:00.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:00 smithi149 bash[28710]: cluster 2023-12-08T23:15:59.126170+0000 mgr.smithi040.evuiyl (mgr.14180) 1484 : cluster [DBG] pgmap v963: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:16:02.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: cluster 2023-12-08T23:16:01.127248+0000 mgr.smithi040.evuiyl (mgr.14180) 1485 : cluster [DBG] pgmap v964: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:16:02.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: cephadm 2023-12-08T23:16:01.684709+0000 mgr.smithi040.evuiyl (mgr.14180) 1486 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.513 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: cephadm 2023-12-08T23:16:01.685195+0000 mgr.smithi040.evuiyl (mgr.14180) 1487 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: audit 2023-12-08T23:16:01.685636+0000 mon.smithi040 (mon.0) 1034 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ksqmse"}]: dispatch 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: cephadm 2023-12-08T23:16:01.686892+0000 mgr.smithi040.evuiyl (mgr.14180) 1488 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.514 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.515 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:02 smithi040 bash[24841]: cephadm 2023-12-08T23:16:01.690553+0000 mgr.smithi040.evuiyl (mgr.14180) 1489 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:16:02.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: cluster 2023-12-08T23:16:01.127248+0000 mgr.smithi040.evuiyl (mgr.14180) 1485 : cluster [DBG] pgmap v964: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: cephadm 2023-12-08T23:16:01.684709+0000 mgr.smithi040.evuiyl (mgr.14180) 1486 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.564 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.565 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: cephadm 2023-12-08T23:16:01.685195+0000 mgr.smithi040.evuiyl (mgr.14180) 1487 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: audit 2023-12-08T23:16:01.685636+0000 mon.smithi040 (mon.0) 1034 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.ksqmse"}]: dispatch 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: cephadm 2023-12-08T23:16:01.686892+0000 mgr.smithi040.evuiyl (mgr.14180) 1488 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.ksqmse ... 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:16:02.566 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:16:02.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:16:02.567 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:02 smithi149 bash[28710]: cephadm 2023-12-08T23:16:01.690553+0000 mgr.smithi040.evuiyl (mgr.14180) 1489 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:16:03.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:03 smithi040 bash[24841]: cephadm 2023-12-08T23:16:01.693560+0000 mgr.smithi040.evuiyl (mgr.14180) 1490 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:16:03.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:03 smithi040 bash[24841]: cluster 2023-12-08T23:16:01.694974+0000 mgr.smithi040.evuiyl (mgr.14180) 1491 : cluster [DBG] pgmap v965: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 225 B/s rd, 0 op/s 2023-12-08T23:16:03.262 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:03 smithi040 bash[24841]: cluster 2023-12-08T23:16:02.195691+0000 mon.smithi040 (mon.0) 1035 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:16:03.394 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:03.394 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:03.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:03 smithi149 bash[28710]: cephadm 2023-12-08T23:16:01.693560+0000 mgr.smithi040.evuiyl (mgr.14180) 1490 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:16:03.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:03 smithi149 bash[28710]: cluster 2023-12-08T23:16:01.694974+0000 mgr.smithi040.evuiyl (mgr.14180) 1491 : cluster [DBG] pgmap v965: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 225 B/s rd, 0 op/s 2023-12-08T23:16:03.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:03 smithi149 bash[28710]: cluster 2023-12-08T23:16:02.195691+0000 mon.smithi040 (mon.0) 1035 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:16:04.304 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:04.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:04 smithi040 bash[24841]: audit 2023-12-08T23:16:03.378461+0000 mgr.smithi040.evuiyl (mgr.14180) 1492 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:04.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:04 smithi149 bash[28710]: audit 2023-12-08T23:16:03.378461+0000 mgr.smithi040.evuiyl (mgr.14180) 1492 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:05.305 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:05.506 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:05 smithi040 bash[24841]: cluster 2023-12-08T23:16:03.696066+0000 mgr.smithi040.evuiyl (mgr.14180) 1493 : cluster [DBG] pgmap v966: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:05.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:05 smithi149 bash[28710]: cluster 2023-12-08T23:16:03.696066+0000 mgr.smithi040.evuiyl (mgr.14180) 1493 : cluster [DBG] pgmap v966: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:06.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:06 smithi040 bash[24841]: audit 2023-12-08T23:16:05.391885+0000 mon.smithi040 (mon.0) 1036 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:16:06.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:06 smithi149 bash[28710]: audit 2023-12-08T23:16:05.391885+0000 mon.smithi040 (mon.0) 1036 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:16:07.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:07 smithi040 bash[24841]: cluster 2023-12-08T23:16:05.696833+0000 mgr.smithi040.evuiyl (mgr.14180) 1494 : cluster [DBG] pgmap v967: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:07.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:07 smithi149 bash[28710]: cluster 2023-12-08T23:16:05.696833+0000 mgr.smithi040.evuiyl (mgr.14180) 1494 : cluster [DBG] pgmap v967: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:08.778 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:08.778 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:09.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:10.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:09 smithi040 bash[24841]: cluster 2023-12-08T23:16:07.697466+0000 mgr.smithi040.evuiyl (mgr.14180) 1495 : cluster [DBG] pgmap v968: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:10.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:09 smithi149 bash[28710]: cluster 2023-12-08T23:16:07.697466+0000 mgr.smithi040.evuiyl (mgr.14180) 1495 : cluster [DBG] pgmap v968: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:10.586 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:11.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:10 smithi040 bash[24841]: audit 2023-12-08T23:16:08.762782+0000 mgr.smithi040.evuiyl (mgr.14180) 1496 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:11.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:10 smithi149 bash[28710]: audit 2023-12-08T23:16:08.762782+0000 mgr.smithi040.evuiyl (mgr.14180) 1496 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:11.903 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:11 smithi040 bash[24841]: cluster 2023-12-08T23:16:09.698620+0000 mgr.smithi040.evuiyl (mgr.14180) 1497 : cluster [DBG] pgmap v969: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 387 B/s rd, 0 op/s 2023-12-08T23:16:12.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:11 smithi149 bash[28710]: cluster 2023-12-08T23:16:09.698620+0000 mgr.smithi040.evuiyl (mgr.14180) 1497 : cluster [DBG] pgmap v969: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 387 B/s rd, 0 op/s 2023-12-08T23:16:13.827 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:13.828 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:14.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:13 smithi040 bash[24841]: cluster 2023-12-08T23:16:11.699528+0000 mgr.smithi040.evuiyl (mgr.14180) 1498 : cluster [DBG] pgmap v970: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:14.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:13 smithi149 bash[28710]: cluster 2023-12-08T23:16:11.699528+0000 mgr.smithi040.evuiyl (mgr.14180) 1498 : cluster [DBG] pgmap v970: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:16:14.631 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:15.632 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:16.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:15 smithi040 bash[24841]: cluster 2023-12-08T23:16:13.700539+0000 mgr.smithi040.evuiyl (mgr.14180) 1499 : cluster [DBG] pgmap v971: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:16.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:15 smithi040 bash[24841]: audit 2023-12-08T23:16:13.809008+0000 mgr.smithi040.evuiyl (mgr.14180) 1500 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:15 smithi149 bash[28710]: cluster 2023-12-08T23:16:13.700539+0000 mgr.smithi040.evuiyl (mgr.14180) 1499 : cluster [DBG] pgmap v971: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:16.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:15 smithi149 bash[28710]: audit 2023-12-08T23:16:13.809008+0000 mgr.smithi040.evuiyl (mgr.14180) 1500 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:17.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:16 smithi040 bash[24841]: cluster 2023-12-08T23:16:15.701513+0000 mgr.smithi040.evuiyl (mgr.14180) 1501 : cluster [DBG] pgmap v972: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:17.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:16 smithi149 bash[28710]: cluster 2023-12-08T23:16:15.701513+0000 mgr.smithi040.evuiyl (mgr.14180) 1501 : cluster [DBG] pgmap v972: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:18.928 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:18.929 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:19.671 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:20.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:19 smithi040 bash[24841]: cluster 2023-12-08T23:16:17.702772+0000 mgr.smithi040.evuiyl (mgr.14180) 1502 : cluster [DBG] pgmap v973: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:20.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:19 smithi149 bash[28710]: cluster 2023-12-08T23:16:17.702772+0000 mgr.smithi040.evuiyl (mgr.14180) 1502 : cluster [DBG] pgmap v973: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:20.672 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:21.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:20 smithi040 bash[24841]: audit 2023-12-08T23:16:18.913068+0000 mgr.smithi040.evuiyl (mgr.14180) 1503 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:21.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:20 smithi149 bash[28710]: audit 2023-12-08T23:16:18.913068+0000 mgr.smithi040.evuiyl (mgr.14180) 1503 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:21.962 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:21 smithi040 bash[24841]: cluster 2023-12-08T23:16:19.704035+0000 mgr.smithi040.evuiyl (mgr.14180) 1504 : cluster [DBG] pgmap v974: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:21 smithi149 bash[28710]: cluster 2023-12-08T23:16:19.704035+0000 mgr.smithi040.evuiyl (mgr.14180) 1504 : cluster [DBG] pgmap v974: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:23.982 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:23.982 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:24.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:23 smithi040 bash[24841]: cluster 2023-12-08T23:16:21.705452+0000 mgr.smithi040.evuiyl (mgr.14180) 1505 : cluster [DBG] pgmap v975: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:23 smithi149 bash[28710]: cluster 2023-12-08T23:16:21.705452+0000 mgr.smithi040.evuiyl (mgr.14180) 1505 : cluster [DBG] pgmap v975: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:24.761 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:25.763 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:25.964 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:25 smithi040 bash[24841]: cluster 2023-12-08T23:16:23.706553+0000 mgr.smithi040.evuiyl (mgr.14180) 1506 : cluster [DBG] pgmap v976: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:25.965 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:25 smithi040 bash[24841]: audit 2023-12-08T23:16:23.967876+0000 mgr.smithi040.evuiyl (mgr.14180) 1507 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:25 smithi149 bash[28710]: cluster 2023-12-08T23:16:23.706553+0000 mgr.smithi040.evuiyl (mgr.14180) 1506 : cluster [DBG] pgmap v976: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:25 smithi149 bash[28710]: audit 2023-12-08T23:16:23.967876+0000 mgr.smithi040.evuiyl (mgr.14180) 1507 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:26 smithi040 bash[24841]: cluster 2023-12-08T23:16:25.707606+0000 mgr.smithi040.evuiyl (mgr.14180) 1508 : cluster [DBG] pgmap v977: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:27.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:26 smithi149 bash[28710]: cluster 2023-12-08T23:16:25.707606+0000 mgr.smithi040.evuiyl (mgr.14180) 1508 : cluster [DBG] pgmap v977: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:29.089 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:29.089 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:29.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:30.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:29 smithi040 bash[24841]: cluster 2023-12-08T23:16:27.708748+0000 mgr.smithi040.evuiyl (mgr.14180) 1509 : cluster [DBG] pgmap v978: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:30.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:29 smithi149 bash[28710]: cluster 2023-12-08T23:16:27.708748+0000 mgr.smithi040.evuiyl (mgr.14180) 1509 : cluster [DBG] pgmap v978: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:30.830 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:30 smithi040 bash[24841]: audit 2023-12-08T23:16:29.079075+0000 mgr.smithi040.evuiyl (mgr.14180) 1510 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:31.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:30 smithi040 bash[24841]: cluster 2023-12-08T23:16:29.709890+0000 mgr.smithi040.evuiyl (mgr.14180) 1511 : cluster [DBG] pgmap v979: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:30 smithi149 bash[28710]: audit 2023-12-08T23:16:29.079075+0000 mgr.smithi040.evuiyl (mgr.14180) 1510 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:30 smithi149 bash[28710]: cluster 2023-12-08T23:16:29.709890+0000 mgr.smithi040.evuiyl (mgr.14180) 1511 : cluster [DBG] pgmap v979: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:34.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:33 smithi040 bash[24841]: cluster 2023-12-08T23:16:31.711253+0000 mgr.smithi040.evuiyl (mgr.14180) 1512 : cluster [DBG] pgmap v980: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:34.046 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:34.046 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:33 smithi149 bash[28710]: cluster 2023-12-08T23:16:31.711253+0000 mgr.smithi040.evuiyl (mgr.14180) 1512 : cluster [DBG] pgmap v980: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:34.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:35.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:34 smithi040 bash[24841]: cluster 2023-12-08T23:16:33.711910+0000 mgr.smithi040.evuiyl (mgr.14180) 1513 : cluster [DBG] pgmap v981: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:35.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:34 smithi040 bash[24841]: audit 2023-12-08T23:16:34.031647+0000 mgr.smithi040.evuiyl (mgr.14180) 1514 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:34 smithi149 bash[28710]: cluster 2023-12-08T23:16:33.711910+0000 mgr.smithi040.evuiyl (mgr.14180) 1513 : cluster [DBG] pgmap v981: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:35.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:34 smithi149 bash[28710]: audit 2023-12-08T23:16:34.031647+0000 mgr.smithi040.evuiyl (mgr.14180) 1514 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:35.914 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:37.029 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:36 smithi040 bash[24841]: cluster 2023-12-08T23:16:35.712989+0000 mgr.smithi040.evuiyl (mgr.14180) 1515 : cluster [DBG] pgmap v982: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:37.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:36 smithi149 bash[28710]: cluster 2023-12-08T23:16:35.712989+0000 mgr.smithi040.evuiyl (mgr.14180) 1515 : cluster [DBG] pgmap v982: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:39.082 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:39.082 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:39.868 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:40.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:39 smithi040 bash[24841]: cluster 2023-12-08T23:16:37.714112+0000 mgr.smithi040.evuiyl (mgr.14180) 1516 : cluster [DBG] pgmap v983: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:40.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:39 smithi149 bash[28710]: cluster 2023-12-08T23:16:37.714112+0000 mgr.smithi040.evuiyl (mgr.14180) 1516 : cluster [DBG] pgmap v983: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:40.869 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:41.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:40 smithi040 bash[24841]: audit 2023-12-08T23:16:39.066915+0000 mgr.smithi040.evuiyl (mgr.14180) 1517 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:41.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:40 smithi040 bash[24841]: cluster 2023-12-08T23:16:39.715291+0000 mgr.smithi040.evuiyl (mgr.14180) 1518 : cluster [DBG] pgmap v984: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:41.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:40 smithi149 bash[28710]: audit 2023-12-08T23:16:39.066915+0000 mgr.smithi040.evuiyl (mgr.14180) 1517 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:41.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:40 smithi149 bash[28710]: cluster 2023-12-08T23:16:39.715291+0000 mgr.smithi040.evuiyl (mgr.14180) 1518 : cluster [DBG] pgmap v984: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:44.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:43 smithi040 bash[24841]: cluster 2023-12-08T23:16:41.716579+0000 mgr.smithi040.evuiyl (mgr.14180) 1519 : cluster [DBG] pgmap v985: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:44.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:43 smithi149 bash[28710]: cluster 2023-12-08T23:16:41.716579+0000 mgr.smithi040.evuiyl (mgr.14180) 1519 : cluster [DBG] pgmap v985: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:44.107 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:44.108 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:44.891 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:45.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:44 smithi040 bash[24841]: cluster 2023-12-08T23:16:43.717738+0000 mgr.smithi040.evuiyl (mgr.14180) 1520 : cluster [DBG] pgmap v986: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:45.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:44 smithi040 bash[24841]: audit 2023-12-08T23:16:44.092731+0000 mgr.smithi040.evuiyl (mgr.14180) 1521 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:44 smithi149 bash[28710]: cluster 2023-12-08T23:16:43.717738+0000 mgr.smithi040.evuiyl (mgr.14180) 1520 : cluster [DBG] pgmap v986: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:45.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:44 smithi149 bash[28710]: audit 2023-12-08T23:16:44.092731+0000 mgr.smithi040.evuiyl (mgr.14180) 1521 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:45.892 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:47.047 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:46 smithi040 bash[24841]: cluster 2023-12-08T23:16:45.719077+0000 mgr.smithi040.evuiyl (mgr.14180) 1522 : cluster [DBG] pgmap v987: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:47.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:46 smithi149 bash[28710]: cluster 2023-12-08T23:16:45.719077+0000 mgr.smithi040.evuiyl (mgr.14180) 1522 : cluster [DBG] pgmap v987: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:49.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:48 smithi040 bash[24841]: cluster 2023-12-08T23:16:47.719904+0000 mgr.smithi040.evuiyl (mgr.14180) 1523 : cluster [DBG] pgmap v988: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:48 smithi149 bash[28710]: cluster 2023-12-08T23:16:47.719904+0000 mgr.smithi040.evuiyl (mgr.14180) 1523 : cluster [DBG] pgmap v988: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:49.224 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:49.225 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:50.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:49 smithi040 bash[24841]: audit 2023-12-08T23:16:49.207952+0000 mgr.smithi040.evuiyl (mgr.14180) 1524 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:50.062 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:50.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:49 smithi149 bash[28710]: audit 2023-12-08T23:16:49.207952+0000 mgr.smithi040.evuiyl (mgr.14180) 1524 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:51.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:50 smithi040 bash[24841]: cluster 2023-12-08T23:16:49.721193+0000 mgr.smithi040.evuiyl (mgr.14180) 1525 : cluster [DBG] pgmap v989: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:51.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:50 smithi149 bash[28710]: cluster 2023-12-08T23:16:49.721193+0000 mgr.smithi040.evuiyl (mgr.14180) 1525 : cluster [DBG] pgmap v989: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:16:51.063 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:53.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:52 smithi040 bash[24841]: cluster 2023-12-08T23:16:51.722484+0000 mgr.smithi040.evuiyl (mgr.14180) 1526 : cluster [DBG] pgmap v990: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:53.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:52 smithi149 bash[28710]: cluster 2023-12-08T23:16:51.722484+0000 mgr.smithi040.evuiyl (mgr.14180) 1526 : cluster [DBG] pgmap v990: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:54.308 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:54.308 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:16:55.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:54 smithi040 bash[24841]: cluster 2023-12-08T23:16:53.723781+0000 mgr.smithi040.evuiyl (mgr.14180) 1527 : cluster [DBG] pgmap v991: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:55.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:54 smithi040 bash[24841]: audit 2023-12-08T23:16:54.293158+0000 mgr.smithi040.evuiyl (mgr.14180) 1528 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:54 smithi149 bash[28710]: cluster 2023-12-08T23:16:53.723781+0000 mgr.smithi040.evuiyl (mgr.14180) 1527 : cluster [DBG] pgmap v991: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:55.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:54 smithi149 bash[28710]: audit 2023-12-08T23:16:54.293158+0000 mgr.smithi040.evuiyl (mgr.14180) 1528 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:16:55.096 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:16:56.097 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:16:57.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:56 smithi040 bash[24841]: cluster 2023-12-08T23:16:55.724953+0000 mgr.smithi040.evuiyl (mgr.14180) 1529 : cluster [DBG] pgmap v992: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:57.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:56 smithi149 bash[28710]: cluster 2023-12-08T23:16:55.724953+0000 mgr.smithi040.evuiyl (mgr.14180) 1529 : cluster [DBG] pgmap v992: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:59.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:58 smithi040 bash[24841]: cluster 2023-12-08T23:16:57.726133+0000 mgr.smithi040.evuiyl (mgr.14180) 1530 : cluster [DBG] pgmap v993: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:58 smithi149 bash[28710]: cluster 2023-12-08T23:16:57.726133+0000 mgr.smithi040.evuiyl (mgr.14180) 1530 : cluster [DBG] pgmap v993: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:16:59.357 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:16:59.357 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:00.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:16:59 smithi040 bash[24841]: audit 2023-12-08T23:16:59.341081+0000 mgr.smithi040.evuiyl (mgr.14180) 1531 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:00.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:16:59 smithi149 bash[28710]: audit 2023-12-08T23:16:59.341081+0000 mgr.smithi040.evuiyl (mgr.14180) 1531 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:00.136 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:01.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:00 smithi040 bash[24841]: cluster 2023-12-08T23:16:59.727494+0000 mgr.smithi040.evuiyl (mgr.14180) 1532 : cluster [DBG] pgmap v994: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:01.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:00 smithi149 bash[28710]: cluster 2023-12-08T23:16:59.727494+0000 mgr.smithi040.evuiyl (mgr.14180) 1532 : cluster [DBG] pgmap v994: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:01.137 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:01.979 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:01 smithi040 bash[24841]: audit 2023-12-08T23:17:01.700433+0000 mon.smithi040 (mon.0) 1037 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:17:02.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:01 smithi149 bash[28710]: audit 2023-12-08T23:17:01.700433+0000 mon.smithi040 (mon.0) 1037 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:17:03.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:02 smithi040 bash[24841]: cluster 2023-12-08T23:17:01.728238+0000 mgr.smithi040.evuiyl (mgr.14180) 1533 : cluster [DBG] pgmap v995: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:03.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:02 smithi149 bash[28710]: cluster 2023-12-08T23:17:01.728238+0000 mgr.smithi040.evuiyl (mgr.14180) 1533 : cluster [DBG] pgmap v995: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:04.478 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:04.478 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:06:44.965453Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:06:44.606866Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:06:44.965669Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:06:44.608202Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:06:44.607113Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:06:44.607272Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:06:44.608349Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:06:44.607422Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:06:44.607569Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:06:44.965872Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:05.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:04 smithi040 bash[24841]: cluster 2023-12-08T23:17:03.729344+0000 mgr.smithi040.evuiyl (mgr.14180) 1534 : cluster [DBG] pgmap v996: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:05.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:04 smithi040 bash[24841]: audit 2023-12-08T23:17:04.465932+0000 mgr.smithi040.evuiyl (mgr.14180) 1535 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:05.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:04 smithi149 bash[28710]: cluster 2023-12-08T23:17:03.729344+0000 mgr.smithi040.evuiyl (mgr.14180) 1534 : cluster [DBG] pgmap v996: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:05.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:04 smithi149 bash[28710]: audit 2023-12-08T23:17:04.465932+0000 mgr.smithi040.evuiyl (mgr.14180) 1535 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:05.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:06.300 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:07.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:06 smithi149 bash[28710]: cluster 2023-12-08T23:17:05.730493+0000 mgr.smithi040.evuiyl (mgr.14180) 1536 : cluster [DBG] pgmap v997: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:07.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:06 smithi040 bash[24841]: cluster 2023-12-08T23:17:05.730493+0000 mgr.smithi040.evuiyl (mgr.14180) 1536 : cluster [DBG] pgmap v997: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:08.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:07.327753+0000 mon.smithi040 (mon.0) 1038 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.019388+0000 mon.smithi040 (mon.0) 1039 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.294663+0000 mon.smithi040 (mon.0) 1040 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.296513+0000 mon.smithi040 (mon.0) 1041 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.305334+0000 mon.smithi040 (mon.0) 1042 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.313147+0000 mon.smithi040 (mon.0) 1043 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:17:08.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:08 smithi040 bash[24841]: audit 2023-12-08T23:17:08.323865+0000 mon.smithi040 (mon.0) 1044 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:07.327753+0000 mon.smithi040 (mon.0) 1038 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.019388+0000 mon.smithi040 (mon.0) 1039 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.294663+0000 mon.smithi040 (mon.0) 1040 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:17:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.296513+0000 mon.smithi040 (mon.0) 1041 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:17:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.305334+0000 mon.smithi040 (mon.0) 1042 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.313147+0000 mon.smithi040 (mon.0) 1043 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:17:08.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:08 smithi149 bash[28710]: audit 2023-12-08T23:17:08.323865+0000 mon.smithi040 (mon.0) 1044 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:09.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:09 smithi040 bash[24841]: cluster 2023-12-08T23:17:07.731501+0000 mgr.smithi040.evuiyl (mgr.14180) 1537 : cluster [DBG] pgmap v998: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:09.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:09 smithi040 bash[24841]: cluster 2023-12-08T23:17:08.306184+0000 mgr.smithi040.evuiyl (mgr.14180) 1538 : cluster [DBG] pgmap v999: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:09.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:09 smithi040 bash[24841]: cephadm 2023-12-08T23:17:08.327071+0000 mgr.smithi040.evuiyl (mgr.14180) 1539 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.wdoeze on smithi149 2023-12-08T23:17:09.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:09 smithi040 bash[24841]: cluster 2023-12-08T23:17:08.726085+0000 mon.smithi040 (mon.0) 1045 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:17:09.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:09 smithi040 bash[24841]: cluster 2023-12-08T23:17:08.726114+0000 mon.smithi040 (mon.0) 1046 : cluster [INF] Cluster is now healthy 2023-12-08T23:17:09.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:09 smithi149 bash[28710]: cluster 2023-12-08T23:17:07.731501+0000 mgr.smithi040.evuiyl (mgr.14180) 1537 : cluster [DBG] pgmap v998: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:09.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:09 smithi149 bash[28710]: cluster 2023-12-08T23:17:08.306184+0000 mgr.smithi040.evuiyl (mgr.14180) 1538 : cluster [DBG] pgmap v999: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:09.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:09 smithi149 bash[28710]: cephadm 2023-12-08T23:17:08.327071+0000 mgr.smithi040.evuiyl (mgr.14180) 1539 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.wdoeze on smithi149 2023-12-08T23:17:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:09 smithi149 bash[28710]: cluster 2023-12-08T23:17:08.726085+0000 mon.smithi040 (mon.0) 1045 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:17:09.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:09 smithi149 bash[28710]: cluster 2023-12-08T23:17:08.726114+0000 mon.smithi040 (mon.0) 1046 : cluster [INF] Cluster is now healthy 2023-12-08T23:17:09.826 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:09.826 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:14:52.566377Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.xuewxi on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:10.668 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:11.670 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:11.682 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:11 smithi040 bash[24841]: audit 2023-12-08T23:17:09.811219+0000 mgr.smithi040.evuiyl (mgr.14180) 1540 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:11.682 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:11 smithi040 bash[24841]: cluster 2023-12-08T23:17:10.306807+0000 mgr.smithi040.evuiyl (mgr.14180) 1541 : cluster [DBG] pgmap v1000: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:11.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:11 smithi149 bash[28710]: audit 2023-12-08T23:17:09.811219+0000 mgr.smithi040.evuiyl (mgr.14180) 1540 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:11.734 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:11 smithi149 bash[28710]: cluster 2023-12-08T23:17:10.306807+0000 mgr.smithi040.evuiyl (mgr.14180) 1541 : cluster [DBG] pgmap v1000: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:12.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:12 smithi149 bash[28710]: audit 2023-12-08T23:17:12.267603+0000 mon.smithi040 (mon.0) 1047 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.wdoeze"}]: dispatch 2023-12-08T23:17:12.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:12 smithi040 bash[24841]: audit 2023-12-08T23:17:12.267603+0000 mon.smithi040 (mon.0) 1047 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.wdoeze"}]: dispatch 2023-12-08T23:17:13.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: cephadm 2023-12-08T23:17:12.266379+0000 mgr.smithi040.evuiyl (mgr.14180) 1542 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:17:13.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: cephadm 2023-12-08T23:17:12.267057+0000 mgr.smithi040.evuiyl (mgr.14180) 1543 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: cephadm 2023-12-08T23:17:12.268776+0000 mgr.smithi040.evuiyl (mgr.14180) 1544 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: cephadm 2023-12-08T23:17:12.272447+0000 mgr.smithi040.evuiyl (mgr.14180) 1545 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.xxmhem on smithi040 2023-12-08T23:17:13.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:13 smithi040 bash[24841]: cluster 2023-12-08T23:17:12.307325+0000 mgr.smithi040.evuiyl (mgr.14180) 1546 : cluster [DBG] pgmap v1001: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: cephadm 2023-12-08T23:17:12.266379+0000 mgr.smithi040.evuiyl (mgr.14180) 1542 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: cephadm 2023-12-08T23:17:12.267057+0000 mgr.smithi040.evuiyl (mgr.14180) 1543 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: cephadm 2023-12-08T23:17:12.268776+0000 mgr.smithi040.evuiyl (mgr.14180) 1544 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:13.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.wdoeze ... 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: cephadm 2023-12-08T23:17:12.272447+0000 mgr.smithi040.evuiyl (mgr.14180) 1545 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.xxmhem on smithi040 2023-12-08T23:17:13.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:13 smithi149 bash[28710]: cluster 2023-12-08T23:17:12.307325+0000 mgr.smithi040.evuiyl (mgr.14180) 1546 : cluster [DBG] pgmap v1001: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:15.079 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:15.079 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:15:57.471163Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.ycxmou on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-ycxmou\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.ycxmou\nDeploy daemon haproxy.nfs.foo.smithi149.ycxmou ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.686664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.ksqmse on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-ksqmse\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.ksqmse\nDeploy daemon haproxy.nfs.foo.smithi040.ksqmse ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:16:01.690364Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ajevim on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:15.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:15 smithi040 bash[24841]: cluster 2023-12-08T23:17:14.308144+0000 mgr.smithi040.evuiyl (mgr.14180) 1547 : cluster [DBG] pgmap v1002: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:15.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:15 smithi149 bash[28710]: cluster 2023-12-08T23:17:14.308144+0000 mgr.smithi040.evuiyl (mgr.14180) 1547 : cluster [DBG] pgmap v1002: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2023-12-08T23:17:15.857 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:16.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:16 smithi040 bash[24841]: audit 2023-12-08T23:17:15.064999+0000 mgr.smithi040.evuiyl (mgr.14180) 1548 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:16.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:16 smithi040 bash[24841]: audit 2023-12-08T23:17:16.061546+0000 mon.smithi040 (mon.0) 1048 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.xxmhem"}]: dispatch 2023-12-08T23:17:16.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:16 smithi149 bash[28710]: audit 2023-12-08T23:17:15.064999+0000 mgr.smithi040.evuiyl (mgr.14180) 1548 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:16.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:16 smithi149 bash[28710]: audit 2023-12-08T23:17:16.061546+0000 mon.smithi040 (mon.0) 1048 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.xxmhem"}]: dispatch 2023-12-08T23:17:16.859 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cephadm 2023-12-08T23:17:16.060361+0000 mgr.smithi040.evuiyl (mgr.14180) 1549 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.763 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cephadm 2023-12-08T23:17:16.060835+0000 mgr.smithi040.evuiyl (mgr.14180) 1550 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cephadm 2023-12-08T23:17:16.063233+0000 mgr.smithi040.evuiyl (mgr.14180) 1551 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.764 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cephadm 2023-12-08T23:17:16.067481+0000 mgr.smithi040.evuiyl (mgr.14180) 1552 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cephadm 2023-12-08T23:17:16.069335+0000 mgr.smithi040.evuiyl (mgr.14180) 1553 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cluster 2023-12-08T23:17:16.070421+0000 mgr.smithi040.evuiyl (mgr.14180) 1554 : cluster [DBG] pgmap v1003: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:17:17.765 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:17 smithi040 bash[24841]: cluster 2023-12-08T23:17:16.353086+0000 mon.smithi040 (mon.0) 1049 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cephadm 2023-12-08T23:17:16.060361+0000 mgr.smithi040.evuiyl (mgr.14180) 1549 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cephadm 2023-12-08T23:17:16.060835+0000 mgr.smithi040.evuiyl (mgr.14180) 1550 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cephadm 2023-12-08T23:17:16.063233+0000 mgr.smithi040.evuiyl (mgr.14180) 1551 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:17:17.816 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.xxmhem ... 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cephadm 2023-12-08T23:17:16.067481+0000 mgr.smithi040.evuiyl (mgr.14180) 1552 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cephadm 2023-12-08T23:17:16.069335+0000 mgr.smithi040.evuiyl (mgr.14180) 1553 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cluster 2023-12-08T23:17:16.070421+0000 mgr.smithi040.evuiyl (mgr.14180) 1554 : cluster [DBG] pgmap v1003: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:17:17.817 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:17 smithi149 bash[28710]: cluster 2023-12-08T23:17:16.353086+0000 mon.smithi040 (mon.0) 1049 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:17:18.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:18 smithi040 bash[24841]: cluster 2023-12-08T23:17:18.071516+0000 mgr.smithi040.evuiyl (mgr.14180) 1555 : cluster [DBG] pgmap v1004: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:17:19.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:18 smithi149 bash[28710]: cluster 2023-12-08T23:17:18.071516+0000 mgr.smithi040.evuiyl (mgr.14180) 1555 : cluster [DBG] pgmap v1004: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 198 B/s rd, 0 op/s 2023-12-08T23:17:20.441 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:20.441 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:21.236 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:21 smithi040 bash[24841]: cluster 2023-12-08T23:17:20.072786+0000 mgr.smithi040.evuiyl (mgr.14180) 1556 : cluster [DBG] pgmap v1005: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 348 B/s rd, 0 op/s 2023-12-08T23:17:21.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:21 smithi040 bash[24841]: audit 2023-12-08T23:17:20.424950+0000 mgr.smithi040.evuiyl (mgr.14180) 1557 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:21.512 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:21 smithi040 bash[24841]: audit 2023-12-08T23:17:20.446919+0000 mon.smithi040 (mon.0) 1050 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:21 smithi149 bash[28710]: cluster 2023-12-08T23:17:20.072786+0000 mgr.smithi040.evuiyl (mgr.14180) 1556 : cluster [DBG] pgmap v1005: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 348 B/s rd, 0 op/s 2023-12-08T23:17:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:21 smithi149 bash[28710]: audit 2023-12-08T23:17:20.424950+0000 mgr.smithi040.evuiyl (mgr.14180) 1557 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:21.742 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:21 smithi149 bash[28710]: audit 2023-12-08T23:17:20.446919+0000 mon.smithi040 (mon.0) 1050 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:17:22.237 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:23.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:23 smithi040 bash[24841]: cluster 2023-12-08T23:17:22.073989+0000 mgr.smithi040.evuiyl (mgr.14180) 1558 : cluster [DBG] pgmap v1006: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:23.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:23 smithi149 bash[28710]: cluster 2023-12-08T23:17:22.073989+0000 mgr.smithi040.evuiyl (mgr.14180) 1558 : cluster [DBG] pgmap v1006: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:25.585 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:25.585 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:25.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:25 smithi040 bash[24841]: cluster 2023-12-08T23:17:24.074941+0000 mgr.smithi040.evuiyl (mgr.14180) 1559 : cluster [DBG] pgmap v1007: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:25.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:25 smithi149 bash[28710]: cluster 2023-12-08T23:17:24.074941+0000 mgr.smithi040.evuiyl (mgr.14180) 1559 : cluster [DBG] pgmap v1007: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:26.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:26.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:26 smithi040 bash[24841]: audit 2023-12-08T23:17:25.571900+0000 mgr.smithi040.evuiyl (mgr.14180) 1560 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:26.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:26 smithi149 bash[28710]: audit 2023-12-08T23:17:25.571900+0000 mgr.smithi040.evuiyl (mgr.14180) 1560 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:27.383 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:27.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:27 smithi040 bash[24841]: cluster 2023-12-08T23:17:26.076168+0000 mgr.smithi040.evuiyl (mgr.14180) 1561 : cluster [DBG] pgmap v1008: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:27.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:27 smithi149 bash[28710]: cluster 2023-12-08T23:17:26.076168+0000 mgr.smithi040.evuiyl (mgr.14180) 1561 : cluster [DBG] pgmap v1008: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2023-12-08T23:17:29.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:28 smithi040 bash[24841]: cluster 2023-12-08T23:17:28.077665+0000 mgr.smithi040.evuiyl (mgr.14180) 1562 : cluster [DBG] pgmap v1009: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:28 smithi149 bash[28710]: cluster 2023-12-08T23:17:28.077665+0000 mgr.smithi040.evuiyl (mgr.14180) 1562 : cluster [DBG] pgmap v1009: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:30.680 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:30.681 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:31.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:31 smithi040 bash[24841]: cluster 2023-12-08T23:17:30.078565+0000 mgr.smithi040.evuiyl (mgr.14180) 1563 : cluster [DBG] pgmap v1010: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:31.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:31 smithi040 bash[24841]: audit 2023-12-08T23:17:30.665314+0000 mgr.smithi040.evuiyl (mgr.14180) 1564 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:31.483 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:31.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:31 smithi149 bash[28710]: cluster 2023-12-08T23:17:30.078565+0000 mgr.smithi040.evuiyl (mgr.14180) 1563 : cluster [DBG] pgmap v1010: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:31.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:31 smithi149 bash[28710]: audit 2023-12-08T23:17:30.665314+0000 mgr.smithi040.evuiyl (mgr.14180) 1564 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:32.484 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:33.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:33 smithi040 bash[24841]: cluster 2023-12-08T23:17:32.079797+0000 mgr.smithi040.evuiyl (mgr.14180) 1565 : cluster [DBG] pgmap v1011: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:33.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:33 smithi149 bash[28710]: cluster 2023-12-08T23:17:32.079797+0000 mgr.smithi040.evuiyl (mgr.14180) 1565 : cluster [DBG] pgmap v1011: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:35.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:35 smithi040 bash[24841]: cluster 2023-12-08T23:17:34.080868+0000 mgr.smithi040.evuiyl (mgr.14180) 1566 : cluster [DBG] pgmap v1012: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:35.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:35 smithi149 bash[28710]: cluster 2023-12-08T23:17:34.080868+0000 mgr.smithi040.evuiyl (mgr.14180) 1566 : cluster [DBG] pgmap v1012: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:35.782 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:35.782 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:36.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:37.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:37 smithi040 bash[24841]: audit 2023-12-08T23:17:35.766839+0000 mgr.smithi040.evuiyl (mgr.14180) 1567 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:37.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:37 smithi040 bash[24841]: cluster 2023-12-08T23:17:36.081641+0000 mgr.smithi040.evuiyl (mgr.14180) 1568 : cluster [DBG] pgmap v1013: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:37.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:37 smithi149 bash[28710]: audit 2023-12-08T23:17:35.766839+0000 mgr.smithi040.evuiyl (mgr.14180) 1567 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:37.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:37 smithi149 bash[28710]: cluster 2023-12-08T23:17:36.081641+0000 mgr.smithi040.evuiyl (mgr.14180) 1568 : cluster [DBG] pgmap v1013: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:37.688 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:39.005 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:38 smithi040 bash[24841]: cluster 2023-12-08T23:17:38.082802+0000 mgr.smithi040.evuiyl (mgr.14180) 1569 : cluster [DBG] pgmap v1014: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:39.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:38 smithi149 bash[28710]: cluster 2023-12-08T23:17:38.082802+0000 mgr.smithi040.evuiyl (mgr.14180) 1569 : cluster [DBG] pgmap v1014: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:41.019 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:41.019 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:41.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:41 smithi040 bash[24841]: cluster 2023-12-08T23:17:40.084062+0000 mgr.smithi040.evuiyl (mgr.14180) 1570 : cluster [DBG] pgmap v1015: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:41.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:41 smithi149 bash[28710]: cluster 2023-12-08T23:17:40.084062+0000 mgr.smithi040.evuiyl (mgr.14180) 1570 : cluster [DBG] pgmap v1015: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:41.839 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:42.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:42 smithi040 bash[24841]: audit 2023-12-08T23:17:41.004966+0000 mgr.smithi040.evuiyl (mgr.14180) 1571 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:42.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:42 smithi149 bash[28710]: audit 2023-12-08T23:17:41.004966+0000 mgr.smithi040.evuiyl (mgr.14180) 1571 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:42.840 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:43.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:43 smithi040 bash[24841]: cluster 2023-12-08T23:17:42.085474+0000 mgr.smithi040.evuiyl (mgr.14180) 1572 : cluster [DBG] pgmap v1016: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:43.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:43 smithi149 bash[28710]: cluster 2023-12-08T23:17:42.085474+0000 mgr.smithi040.evuiyl (mgr.14180) 1572 : cluster [DBG] pgmap v1016: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:45.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:45 smithi040 bash[24841]: cluster 2023-12-08T23:17:44.086854+0000 mgr.smithi040.evuiyl (mgr.14180) 1573 : cluster [DBG] pgmap v1017: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:45.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:45 smithi149 bash[28710]: cluster 2023-12-08T23:17:44.086854+0000 mgr.smithi040.evuiyl (mgr.14180) 1573 : cluster [DBG] pgmap v1017: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:46.241 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:46.241 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:47.034 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:47.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:47 smithi040 bash[24841]: cluster 2023-12-08T23:17:46.088027+0000 mgr.smithi040.evuiyl (mgr.14180) 1574 : cluster [DBG] pgmap v1018: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:47.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:47 smithi040 bash[24841]: audit 2023-12-08T23:17:46.227047+0000 mgr.smithi040.evuiyl (mgr.14180) 1575 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:47.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:47 smithi149 bash[28710]: cluster 2023-12-08T23:17:46.088027+0000 mgr.smithi040.evuiyl (mgr.14180) 1574 : cluster [DBG] pgmap v1018: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:47.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:47 smithi149 bash[28710]: audit 2023-12-08T23:17:46.227047+0000 mgr.smithi040.evuiyl (mgr.14180) 1575 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:48.035 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:49.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:48 smithi040 bash[24841]: cluster 2023-12-08T23:17:48.089089+0000 mgr.smithi040.evuiyl (mgr.14180) 1576 : cluster [DBG] pgmap v1019: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:49.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:48 smithi149 bash[28710]: cluster 2023-12-08T23:17:48.089089+0000 mgr.smithi040.evuiyl (mgr.14180) 1576 : cluster [DBG] pgmap v1019: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:51.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:51 smithi040 bash[24841]: cluster 2023-12-08T23:17:50.090344+0000 mgr.smithi040.evuiyl (mgr.14180) 1577 : cluster [DBG] pgmap v1020: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:51.364 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:51.365 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:51.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:51 smithi149 bash[28710]: cluster 2023-12-08T23:17:50.090344+0000 mgr.smithi040.evuiyl (mgr.14180) 1577 : cluster [DBG] pgmap v1020: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:17:52.185 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:52.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:52 smithi040 bash[24841]: audit 2023-12-08T23:17:51.348109+0000 mgr.smithi040.evuiyl (mgr.14180) 1578 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:52.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:52 smithi149 bash[28710]: audit 2023-12-08T23:17:51.348109+0000 mgr.smithi040.evuiyl (mgr.14180) 1578 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:53.186 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:53.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:53 smithi040 bash[24841]: cluster 2023-12-08T23:17:52.091606+0000 mgr.smithi040.evuiyl (mgr.14180) 1579 : cluster [DBG] pgmap v1021: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:53.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:53 smithi149 bash[28710]: cluster 2023-12-08T23:17:52.091606+0000 mgr.smithi040.evuiyl (mgr.14180) 1579 : cluster [DBG] pgmap v1021: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:55.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:55 smithi040 bash[24841]: cluster 2023-12-08T23:17:54.092876+0000 mgr.smithi040.evuiyl (mgr.14180) 1580 : cluster [DBG] pgmap v1022: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:55.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:55 smithi149 bash[28710]: cluster 2023-12-08T23:17:54.092876+0000 mgr.smithi040.evuiyl (mgr.14180) 1580 : cluster [DBG] pgmap v1022: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:56.322 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:17:56.322 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:17:57.177 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:17:57.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:57 smithi040 bash[24841]: cluster 2023-12-08T23:17:56.093874+0000 mgr.smithi040.evuiyl (mgr.14180) 1581 : cluster [DBG] pgmap v1023: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:57.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:57 smithi040 bash[24841]: audit 2023-12-08T23:17:56.308232+0000 mgr.smithi040.evuiyl (mgr.14180) 1582 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:57.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:57 smithi149 bash[28710]: cluster 2023-12-08T23:17:56.093874+0000 mgr.smithi040.evuiyl (mgr.14180) 1581 : cluster [DBG] pgmap v1023: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:57.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:57 smithi149 bash[28710]: audit 2023-12-08T23:17:56.308232+0000 mgr.smithi040.evuiyl (mgr.14180) 1582 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:17:58.178 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:17:59.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:17:58 smithi040 bash[24841]: cluster 2023-12-08T23:17:58.095129+0000 mgr.smithi040.evuiyl (mgr.14180) 1583 : cluster [DBG] pgmap v1024: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:17:59.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:17:58 smithi149 bash[28710]: cluster 2023-12-08T23:17:58.095129+0000 mgr.smithi040.evuiyl (mgr.14180) 1583 : cluster [DBG] pgmap v1024: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:01.421 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:01.421 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:01.481 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:01 smithi040 bash[24841]: cluster 2023-12-08T23:18:00.096456+0000 mgr.smithi040.evuiyl (mgr.14180) 1584 : cluster [DBG] pgmap v1025: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:01.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:01 smithi149 bash[28710]: cluster 2023-12-08T23:18:00.096456+0000 mgr.smithi040.evuiyl (mgr.14180) 1584 : cluster [DBG] pgmap v1025: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:02.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:02 smithi040 bash[24841]: audit 2023-12-08T23:18:01.404072+0000 mgr.smithi040.evuiyl (mgr.14180) 1585 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:02.298 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:02.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:02 smithi149 bash[28710]: audit 2023-12-08T23:18:01.404072+0000 mgr.smithi040.evuiyl (mgr.14180) 1585 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:03.300 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:03.509 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:03 smithi040 bash[24841]: cluster 2023-12-08T23:18:02.097659+0000 mgr.smithi040.evuiyl (mgr.14180) 1586 : cluster [DBG] pgmap v1026: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:03.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:03 smithi149 bash[28710]: cluster 2023-12-08T23:18:02.097659+0000 mgr.smithi040.evuiyl (mgr.14180) 1586 : cluster [DBG] pgmap v1026: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:05.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:05 smithi040 bash[24841]: cluster 2023-12-08T23:18:04.098881+0000 mgr.smithi040.evuiyl (mgr.14180) 1587 : cluster [DBG] pgmap v1027: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:05.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:05 smithi149 bash[28710]: cluster 2023-12-08T23:18:04.098881+0000 mgr.smithi040.evuiyl (mgr.14180) 1587 : cluster [DBG] pgmap v1027: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:06.593 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:06.594 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:07.401 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:07.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:07 smithi040 bash[24841]: cluster 2023-12-08T23:18:06.100079+0000 mgr.smithi040.evuiyl (mgr.14180) 1588 : cluster [DBG] pgmap v1028: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:07.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:07 smithi040 bash[24841]: audit 2023-12-08T23:18:06.578303+0000 mgr.smithi040.evuiyl (mgr.14180) 1589 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:07.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:07 smithi149 bash[28710]: cluster 2023-12-08T23:18:06.100079+0000 mgr.smithi040.evuiyl (mgr.14180) 1588 : cluster [DBG] pgmap v1028: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:07.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:07 smithi149 bash[28710]: audit 2023-12-08T23:18:06.578303+0000 mgr.smithi040.evuiyl (mgr.14180) 1589 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:08.402 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:09.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:08 smithi040 bash[24841]: cluster 2023-12-08T23:18:08.101217+0000 mgr.smithi040.evuiyl (mgr.14180) 1590 : cluster [DBG] pgmap v1029: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:09.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:08 smithi149 bash[28710]: cluster 2023-12-08T23:18:08.101217+0000 mgr.smithi040.evuiyl (mgr.14180) 1590 : cluster [DBG] pgmap v1029: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:11.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:11 smithi040 bash[24841]: cluster 2023-12-08T23:18:10.102060+0000 mgr.smithi040.evuiyl (mgr.14180) 1591 : cluster [DBG] pgmap v1030: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:11.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:11 smithi149 bash[28710]: cluster 2023-12-08T23:18:10.102060+0000 mgr.smithi040.evuiyl (mgr.14180) 1591 : cluster [DBG] pgmap v1030: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:11.724 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:11.724 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:12.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:12 smithi040 bash[24841]: audit 2023-12-08T23:18:11.714291+0000 mgr.smithi040.evuiyl (mgr.14180) 1592 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:12.506 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:12.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:12 smithi149 bash[28710]: audit 2023-12-08T23:18:11.714291+0000 mgr.smithi040.evuiyl (mgr.14180) 1592 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:13.508 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:13.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:13 smithi040 bash[24841]: cluster 2023-12-08T23:18:12.103183+0000 mgr.smithi040.evuiyl (mgr.14180) 1593 : cluster [DBG] pgmap v1031: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:13.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:13 smithi149 bash[28710]: cluster 2023-12-08T23:18:12.103183+0000 mgr.smithi040.evuiyl (mgr.14180) 1593 : cluster [DBG] pgmap v1031: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:15.433 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:15 smithi040 bash[24841]: cluster 2023-12-08T23:18:14.104342+0000 mgr.smithi040.evuiyl (mgr.14180) 1594 : cluster [DBG] pgmap v1032: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:15.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:15 smithi149 bash[28710]: cluster 2023-12-08T23:18:14.104342+0000 mgr.smithi040.evuiyl (mgr.14180) 1594 : cluster [DBG] pgmap v1032: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:16.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:16 smithi040 bash[24841]: audit 2023-12-08T23:18:16.073993+0000 mon.smithi040 (mon.0) 1051 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:18:16.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:16 smithi149 bash[28710]: audit 2023-12-08T23:18:16.073993+0000 mon.smithi040 (mon.0) 1051 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-12-08T23:18:16.708 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:16.709 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:16:01.693408Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.oorpgj on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:17.551 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:17.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: cluster 2023-12-08T23:18:16.105129+0000 mgr.smithi040.evuiyl (mgr.14180) 1595 : cluster [DBG] pgmap v1033: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:17.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.344642+0000 mon.smithi040 (mon.0) 1052 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.611192+0000 mon.smithi040 (mon.0) 1053 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:18:17.761 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.612747+0000 mon.smithi040 (mon.0) 1054 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.621905+0000 mon.smithi040 (mon.0) 1055 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: cluster 2023-12-08T23:18:16.622810+0000 mgr.smithi040.evuiyl (mgr.14180) 1596 : cluster [DBG] pgmap v1034: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.631306+0000 mon.smithi040 (mon.0) 1056 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.644883+0000 mon.smithi040 (mon.0) 1057 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: cephadm 2023-12-08T23:18:16.649200+0000 mgr.smithi040.evuiyl (mgr.14180) 1597 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.kvmbtd on smithi149 2023-12-08T23:18:17.762 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:17 smithi040 bash[24841]: audit 2023-12-08T23:18:16.693293+0000 mgr.smithi040.evuiyl (mgr.14180) 1598 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:17.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: cluster 2023-12-08T23:18:16.105129+0000 mgr.smithi040.evuiyl (mgr.14180) 1595 : cluster [DBG] pgmap v1033: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.344642+0000 mon.smithi040 (mon.0) 1052 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.611192+0000 mon.smithi040 (mon.0) 1053 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.612747+0000 mon.smithi040 (mon.0) 1054 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.621905+0000 mon.smithi040 (mon.0) 1055 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: cluster 2023-12-08T23:18:16.622810+0000 mgr.smithi040.evuiyl (mgr.14180) 1596 : cluster [DBG] pgmap v1034: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.631306+0000 mon.smithi040 (mon.0) 1056 : audit [DBG] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.644883+0000 mon.smithi040 (mon.0) 1057 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:17.814 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: cephadm 2023-12-08T23:18:16.649200+0000 mgr.smithi040.evuiyl (mgr.14180) 1597 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi149.kvmbtd on smithi149 2023-12-08T23:18:17.815 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:17 smithi149 bash[28710]: audit 2023-12-08T23:18:16.693293+0000 mgr.smithi040.evuiyl (mgr.14180) 1598 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:18.552 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:18.750 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:18 smithi040 bash[24841]: cluster 2023-12-08T23:18:17.618580+0000 mon.smithi040 (mon.0) 1058 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:18:18.750 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:18 smithi040 bash[24841]: cluster 2023-12-08T23:18:17.618639+0000 mon.smithi040 (mon.0) 1059 : cluster [INF] Cluster is now healthy 2023-12-08T23:18:18.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:18 smithi149 bash[28710]: cluster 2023-12-08T23:18:17.618580+0000 mon.smithi040 (mon.0) 1058 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-12-08T23:18:18.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:18 smithi149 bash[28710]: cluster 2023-12-08T23:18:17.618639+0000 mon.smithi040 (mon.0) 1059 : cluster [INF] Cluster is now healthy 2023-12-08T23:18:19.705 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:19 smithi040 bash[24841]: cluster 2023-12-08T23:18:18.623441+0000 mgr.smithi040.evuiyl (mgr.14180) 1599 : cluster [DBG] pgmap v1035: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:19.813 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:19 smithi149 bash[28710]: cluster 2023-12-08T23:18:18.623441+0000 mgr.smithi040.evuiyl (mgr.14180) 1599 : cluster [DBG] pgmap v1035: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:21.961 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:21.962 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:12.268581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.wdoeze on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-wdoeze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.wdoeze\nDeploy daemon haproxy.nfs.foo.smithi149.wdoeze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.063001Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.xxmhem on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-xxmhem\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.xxmhem\nDeploy daemon haproxy.nfs.foo.smithi040.xxmhem ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:17:16.067265Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.rmqgtj on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:21.979 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:21 smithi040 bash[24841]: cluster 2023-12-08T23:18:20.624289+0000 mgr.smithi040.evuiyl (mgr.14180) 1600 : cluster [DBG] pgmap v1036: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:21.979 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:21 smithi040 bash[24841]: audit 2023-12-08T23:18:21.041040+0000 mon.smithi040 (mon.0) 1060 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.kvmbtd"}]: dispatch 2023-12-08T23:18:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:21 smithi149 bash[28710]: cluster 2023-12-08T23:18:20.624289+0000 mgr.smithi040.evuiyl (mgr.14180) 1600 : cluster [DBG] pgmap v1036: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:22.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:21 smithi149 bash[28710]: audit 2023-12-08T23:18:21.041040+0000 mon.smithi040 (mon.0) 1060 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi149.kvmbtd"}]: dispatch 2023-12-08T23:18:22.805 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:23.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: cephadm 2023-12-08T23:18:21.039845+0000 mgr.smithi040.evuiyl (mgr.14180) 1601 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:18:23.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: cephadm 2023-12-08T23:18:21.040289+0000 mgr.smithi040.evuiyl (mgr.14180) 1602 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: cephadm 2023-12-08T23:18:21.042521+0000 mgr.smithi040.evuiyl (mgr.14180) 1603 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:22 smithi040 bash[24841]: cephadm 2023-12-08T23:18:21.044986+0000 mgr.smithi040.evuiyl (mgr.14180) 1604 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.vsxzhj on smithi040 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: cephadm 2023-12-08T23:18:21.039845+0000 mgr.smithi040.evuiyl (mgr.14180) 1601 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: cephadm 2023-12-08T23:18:21.040289+0000 mgr.smithi040.evuiyl (mgr.14180) 1602 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: cephadm 2023-12-08T23:18:21.042521+0000 mgr.smithi040.evuiyl (mgr.14180) 1603 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd 2023-12-08T23:18:23.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi149.kvmbtd ... 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr 2.3: Pulling from library/haproxy 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:23.068 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:22 smithi149 bash[28710]: cephadm 2023-12-08T23:18:21.044986+0000 mgr.smithi040.evuiyl (mgr.14180) 1604 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi040.vsxzhj on smithi040 2023-12-08T23:18:23.806 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:24.006 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:23 smithi040 bash[24841]: audit 2023-12-08T23:18:21.947046+0000 mgr.smithi040.evuiyl (mgr.14180) 1605 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:24.006 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:23 smithi040 bash[24841]: cluster 2023-12-08T23:18:22.624975+0000 mgr.smithi040.evuiyl (mgr.14180) 1606 : cluster [DBG] pgmap v1037: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:23 smithi149 bash[28710]: audit 2023-12-08T23:18:21.947046+0000 mgr.smithi040.evuiyl (mgr.14180) 1605 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:24.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:23 smithi149 bash[28710]: cluster 2023-12-08T23:18:22.624975+0000 mgr.smithi040.evuiyl (mgr.14180) 1606 : cluster [DBG] pgmap v1037: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:25.968 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:25 smithi040 bash[24841]: cluster 2023-12-08T23:18:24.625920+0000 mgr.smithi040.evuiyl (mgr.14180) 1607 : cluster [DBG] pgmap v1038: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:25.968 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:25 smithi040 bash[24841]: audit 2023-12-08T23:18:24.985856+0000 mon.smithi040 (mon.0) 1061 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.vsxzhj"}]: dispatch 2023-12-08T23:18:25.968 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:25 smithi040 bash[24841]: audit 2023-12-08T23:18:25.487952+0000 mon.smithi040 (mon.0) 1062 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:25 smithi149 bash[28710]: cluster 2023-12-08T23:18:24.625920+0000 mgr.smithi040.evuiyl (mgr.14180) 1607 : cluster [DBG] pgmap v1038: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 194 B/s rd, 0 op/s 2023-12-08T23:18:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:25 smithi149 bash[28710]: audit 2023-12-08T23:18:24.985856+0000 mon.smithi040 (mon.0) 1061 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi040.vsxzhj"}]: dispatch 2023-12-08T23:18:26.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:25 smithi149 bash[28710]: audit 2023-12-08T23:18:25.487952+0000 mon.smithi040 (mon.0) 1062 : audit [INF] from='mgr.14180 172.21.15.40:0/148293352' entity='mgr.smithi040.evuiyl' 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cephadm 2023-12-08T23:18:24.984989+0000 mgr.smithi040.evuiyl (mgr.14180) 1608 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Traceback (most recent call last): 2023-12-08T23:18:27.012 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: yield (conn, connr) 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: code, '\n'.join(err))) 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.013 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cephadm 2023-12-08T23:18:24.985364+0000 mgr.smithi040.evuiyl (mgr.14180) 1609 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cephadm 2023-12-08T23:18:24.986988+0000 mgr.smithi040.evuiyl (mgr.14180) 1610 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stdout 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.014 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cephadm 2023-12-08T23:18:24.989971+0000 mgr.smithi040.evuiyl (mgr.14180) 1611 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cephadm 2023-12-08T23:18:24.992995+0000 mgr.smithi040.evuiyl (mgr.14180) 1612 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cluster 2023-12-08T23:18:24.994132+0000 mgr.smithi040.evuiyl (mgr.14180) 1613 : cluster [DBG] pgmap v1039: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 230 B/s rd, 0 op/s 2023-12-08T23:18:27.015 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:26 smithi040 bash[24841]: cluster 2023-12-08T23:18:25.696527+0000 mon.smithi040 (mon.0) 1063 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cephadm 2023-12-08T23:18:24.984989+0000 mgr.smithi040.evuiyl (mgr.14180) 1608 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.064 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Traceback (most recent call last): 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: yield (conn, connr) 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: code, '\n'.join(err))) 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.065 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cephadm 2023-12-08T23:18:24.985364+0000 mgr.smithi040.evuiyl (mgr.14180) 1609 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cephadm 2023-12-08T23:18:24.986988+0000 mgr.smithi040.evuiyl (mgr.14180) 1610 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj 2023-12-08T23:18:27.066 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stdout 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Deploy daemon haproxy.nfs.foo.smithi040.vsxzhj ... 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr Unable to find image 'haproxy:2.3' locally 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: stat: stderr See 'docker run --help'. 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cephadm 2023-12-08T23:18:24.989971+0000 mgr.smithi040.evuiyl (mgr.14180) 1611 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cephadm 2023-12-08T23:18:24.992995+0000 mgr.smithi040.evuiyl (mgr.14180) 1612 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cluster 2023-12-08T23:18:24.994132+0000 mgr.smithi040.evuiyl (mgr.14180) 1613 : cluster [DBG] pgmap v1039: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 230 B/s rd, 0 op/s 2023-12-08T23:18:27.067 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:26 smithi149 bash[28710]: cluster 2023-12-08T23:18:25.696527+0000 mon.smithi040 (mon.0) 1063 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-12-08T23:18:27.300 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:27.300 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:28.194 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:29.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:28 smithi040 bash[24841]: cluster 2023-12-08T23:18:26.994794+0000 mgr.smithi040.evuiyl (mgr.14180) 1614 : cluster [DBG] pgmap v1040: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:29.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:28 smithi040 bash[24841]: audit 2023-12-08T23:18:27.290429+0000 mgr.smithi040.evuiyl (mgr.14180) 1615 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:28 smithi149 bash[28710]: cluster 2023-12-08T23:18:26.994794+0000 mgr.smithi040.evuiyl (mgr.14180) 1614 : cluster [DBG] pgmap v1040: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:29.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:28 smithi149 bash[28710]: audit 2023-12-08T23:18:27.290429+0000 mgr.smithi040.evuiyl (mgr.14180) 1615 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:29.195 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:31.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:30 smithi040 bash[24841]: cluster 2023-12-08T23:18:28.995824+0000 mgr.smithi040.evuiyl (mgr.14180) 1616 : cluster [DBG] pgmap v1041: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:31.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:30 smithi149 bash[28710]: cluster 2023-12-08T23:18:28.995824+0000 mgr.smithi040.evuiyl (mgr.14180) 1616 : cluster [DBG] pgmap v1041: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:32.038 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:31 smithi040 bash[24841]: cluster 2023-12-08T23:18:30.996570+0000 mgr.smithi040.evuiyl (mgr.14180) 1617 : cluster [DBG] pgmap v1042: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:32.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:31 smithi149 bash[28710]: cluster 2023-12-08T23:18:30.996570+0000 mgr.smithi040.evuiyl (mgr.14180) 1617 : cluster [DBG] pgmap v1042: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:32.446 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:32.446 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:33.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:32 smithi040 bash[24841]: audit 2023-12-08T23:18:32.430149+0000 mgr.smithi040.evuiyl (mgr.14180) 1618 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:33.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:32 smithi149 bash[28710]: audit 2023-12-08T23:18:32.430149+0000 mgr.smithi040.evuiyl (mgr.14180) 1618 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:33.232 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:34.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:33 smithi149 bash[28710]: cluster 2023-12-08T23:18:32.997684+0000 mgr.smithi040.evuiyl (mgr.14180) 1619 : cluster [DBG] pgmap v1043: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:34.233 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:34.246 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:33 smithi040 bash[24841]: cluster 2023-12-08T23:18:32.997684+0000 mgr.smithi040.evuiyl (mgr.14180) 1619 : cluster [DBG] pgmap v1043: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:36.313 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:36 smithi149 bash[28710]: cluster 2023-12-08T23:18:34.998431+0000 mgr.smithi040.evuiyl (mgr.14180) 1620 : cluster [DBG] pgmap v1044: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:36.320 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:36 smithi040 bash[24841]: cluster 2023-12-08T23:18:34.998431+0000 mgr.smithi040.evuiyl (mgr.14180) 1620 : cluster [DBG] pgmap v1044: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 197 B/s rd, 0 op/s 2023-12-08T23:18:37.641 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:37.641 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:38.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:38 smithi040 bash[24841]: cluster 2023-12-08T23:18:36.999269+0000 mgr.smithi040.evuiyl (mgr.14180) 1621 : cluster [DBG] pgmap v1045: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:38.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:38 smithi040 bash[24841]: audit 2023-12-08T23:18:37.631379+0000 mgr.smithi040.evuiyl (mgr.14180) 1622 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:38.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:38.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:38 smithi149 bash[28710]: cluster 2023-12-08T23:18:36.999269+0000 mgr.smithi040.evuiyl (mgr.14180) 1621 : cluster [DBG] pgmap v1045: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:38.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:38 smithi149 bash[28710]: audit 2023-12-08T23:18:37.631379+0000 mgr.smithi040.evuiyl (mgr.14180) 1622 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:39.491 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:40.459 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:40 smithi040 bash[24841]: cluster 2023-12-08T23:18:39.000464+0000 mgr.smithi040.evuiyl (mgr.14180) 1623 : cluster [DBG] pgmap v1046: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:40.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:40 smithi149 bash[28710]: cluster 2023-12-08T23:18:39.000464+0000 mgr.smithi040.evuiyl (mgr.14180) 1623 : cluster [DBG] pgmap v1046: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:42.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:42 smithi040 bash[24841]: cluster 2023-12-08T23:18:41.001660+0000 mgr.smithi040.evuiyl (mgr.14180) 1624 : cluster [DBG] pgmap v1047: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:42.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:42 smithi149 bash[28710]: cluster 2023-12-08T23:18:41.001660+0000 mgr.smithi040.evuiyl (mgr.14180) 1624 : cluster [DBG] pgmap v1047: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:42.619 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:42.620 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:43.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:43 smithi040 bash[24841]: audit 2023-12-08T23:18:42.604616+0000 mgr.smithi040.evuiyl (mgr.14180) 1625 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:43.439 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:43.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:43 smithi149 bash[28710]: audit 2023-12-08T23:18:42.604616+0000 mgr.smithi040.evuiyl (mgr.14180) 1625 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:44.440 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:44.454 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:44 smithi040 bash[24841]: cluster 2023-12-08T23:18:43.002794+0000 mgr.smithi040.evuiyl (mgr.14180) 1626 : cluster [DBG] pgmap v1048: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:44.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:44 smithi149 bash[28710]: cluster 2023-12-08T23:18:43.002794+0000 mgr.smithi040.evuiyl (mgr.14180) 1626 : cluster [DBG] pgmap v1048: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:46.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:46 smithi040 bash[24841]: cluster 2023-12-08T23:18:45.004117+0000 mgr.smithi040.evuiyl (mgr.14180) 1627 : cluster [DBG] pgmap v1049: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:46.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:46 smithi149 bash[28710]: cluster 2023-12-08T23:18:45.004117+0000 mgr.smithi040.evuiyl (mgr.14180) 1627 : cluster [DBG] pgmap v1049: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:47.755 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:47.756 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:48.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:48 smithi040 bash[24841]: cluster 2023-12-08T23:18:47.004986+0000 mgr.smithi040.evuiyl (mgr.14180) 1628 : cluster [DBG] pgmap v1050: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:48.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:48 smithi149 bash[28710]: cluster 2023-12-08T23:18:47.004986+0000 mgr.smithi040.evuiyl (mgr.14180) 1628 : cluster [DBG] pgmap v1050: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:48.575 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:49.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:49 smithi040 bash[24841]: audit 2023-12-08T23:18:47.745842+0000 mgr.smithi040.evuiyl (mgr.14180) 1629 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:49.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:49 smithi149 bash[28710]: audit 2023-12-08T23:18:47.745842+0000 mgr.smithi040.evuiyl (mgr.14180) 1629 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:49.577 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:50.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:50 smithi040 bash[24841]: cluster 2023-12-08T23:18:49.006149+0000 mgr.smithi040.evuiyl (mgr.14180) 1630 : cluster [DBG] pgmap v1051: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:50.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:50 smithi149 bash[28710]: cluster 2023-12-08T23:18:49.006149+0000 mgr.smithi040.evuiyl (mgr.14180) 1630 : cluster [DBG] pgmap v1051: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:52.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:52 smithi040 bash[24841]: cluster 2023-12-08T23:18:51.007450+0000 mgr.smithi040.evuiyl (mgr.14180) 1631 : cluster [DBG] pgmap v1052: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:52.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:52 smithi149 bash[28710]: cluster 2023-12-08T23:18:51.007450+0000 mgr.smithi040.evuiyl (mgr.14180) 1631 : cluster [DBG] pgmap v1052: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:18:52.836 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:52.837 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:53.637 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:54.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:53 smithi040 bash[24841]: audit 2023-12-08T23:18:52.819870+0000 mgr.smithi040.evuiyl (mgr.14180) 1632 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:54.011 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:53 smithi040 bash[24841]: cluster 2023-12-08T23:18:53.008250+0000 mgr.smithi040.evuiyl (mgr.14180) 1633 : cluster [DBG] pgmap v1053: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:53 smithi149 bash[28710]: audit 2023-12-08T23:18:52.819870+0000 mgr.smithi040.evuiyl (mgr.14180) 1632 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:54.063 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:53 smithi149 bash[28710]: cluster 2023-12-08T23:18:53.008250+0000 mgr.smithi040.evuiyl (mgr.14180) 1633 : cluster [DBG] pgmap v1053: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:54.638 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:18:56.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:56 smithi040 bash[24841]: cluster 2023-12-08T23:18:55.009625+0000 mgr.smithi040.evuiyl (mgr.14180) 1634 : cluster [DBG] pgmap v1054: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:56.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:56 smithi149 bash[28710]: cluster 2023-12-08T23:18:55.009625+0000 mgr.smithi040.evuiyl (mgr.14180) 1634 : cluster [DBG] pgmap v1054: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:57.992 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:18:57.992 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:18:58.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:58 smithi040 bash[24841]: cluster 2023-12-08T23:18:57.010389+0000 mgr.smithi040.evuiyl (mgr.14180) 1635 : cluster [DBG] pgmap v1055: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:58.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:58 smithi149 bash[28710]: cluster 2023-12-08T23:18:57.010389+0000 mgr.smithi040.evuiyl (mgr.14180) 1635 : cluster [DBG] pgmap v1055: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:18:58.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:18:59.511 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:18:59 smithi040 bash[24841]: audit 2023-12-08T23:18:57.976537+0000 mgr.smithi040.evuiyl (mgr.14180) 1636 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:59.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:18:59 smithi149 bash[28710]: audit 2023-12-08T23:18:57.976537+0000 mgr.smithi040.evuiyl (mgr.14180) 1636 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:18:59.774 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:451ceae11b5d4caee05e94372fe658621eefc0b1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 20a983fc-961b-11ee-95a3-87774f69a715 -- ceph orch ls -f json 2023-12-08T23:19:00.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:00 smithi040 bash[24841]: cluster 2023-12-08T23:18:59.011679+0000 mgr.smithi040.evuiyl (mgr.14180) 1637 : cluster [DBG] pgmap v1056: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:19:00.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:00 smithi149 bash[28710]: cluster 2023-12-08T23:18:59.011679+0000 mgr.smithi040.evuiyl (mgr.14180) 1637 : cluster [DBG] pgmap v1056: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:19:02.261 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:02 smithi040 bash[24841]: cluster 2023-12-08T23:19:01.012603+0000 mgr.smithi040.evuiyl (mgr.14180) 1638 : cluster [DBG] pgmap v1057: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:19:02.563 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:02 smithi149 bash[28710]: cluster 2023-12-08T23:19:01.012603+0000 mgr.smithi040.evuiyl (mgr.14180) 1638 : cluster [DBG] pgmap v1057: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-12-08T23:19:03.110 INFO:teuthology.orchestra.run.smithi040.stdout: 2023-12-08T23:19:03.111 INFO:teuthology.orchestra.run.smithi040.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-12-08T22:44:46.944092Z", "last_refresh": "2023-12-08T23:17:08.007750Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-12-08T22:44:37.881228Z", "last_refresh": "2023-12-08T23:17:07.318778Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-12-08T22:44:42.004079Z", "last_refresh": "2023-12-08T23:17:08.008230Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-12-08T23:17:16.069237Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.olkkcd on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:21.042365Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi149.kvmbtd on smithi149: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi149-kvmbtd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi149.kvmbtd\nDeploy daemon haproxy.nfs.foo.smithi149.kvmbtd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr 2.3: Pulling from library/haproxy\nstat: stderr docker: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi149 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.986790Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi040.vsxzhj on smithi040: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy-nfs-foo-smithi040-vsxzhj\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-haproxy.nfs.foo.smithi040.vsxzhj\nDeploy daemon haproxy.nfs.foo.smithi040.vsxzhj ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi040 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-12-08T23:18:24.989818Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi040.ulpqlr on smithi040: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-12-08T23:18:24.992835Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi149.sqrmvn on smithi149: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9002, "virtual_ip": "10.0.31.40/16"}, "status": {"created": "2023-12-08T22:53:02.379315Z", "ports": [2049, 9002], "running": 0, "size": 4, "virtual_ip": "10.0.31.40/16"}}, {"events": ["2023-12-08T22:52:58.421567Z service:mds.foofs [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foofs", "service_name": "mds.foofs", "service_type": "mds", "status": {"created": "2023-12-08T22:52:58.413564Z", "last_refresh": "2023-12-08T23:17:07.319839Z", "running": 2, "size": 2}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-12-08T22:44:35.929699Z", "last_refresh": "2023-12-08T23:17:07.319092Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:46:26.339192Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi040:172.21.15.40=smithi040", "smithi149:172.21.15.149=smithi149"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-12-08T22:46:26.334605Z", "last_refresh": "2023-12-08T23:17:07.319206Z", "running": 2, "size": 2}}, {"events": ["2023-12-08T22:53:02.378961Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-12-08T22:53:02.374838Z", "last_refresh": "2023-12-08T23:17:07.319943Z", "ports": [12049], "running": 2, "size": 2}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-12-08T22:44:44.630772Z", "last_refresh": "2023-12-08T23:17:07.319315Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-12-08T22:47:01.741342Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-12-08T22:47:01.735160Z", "last_refresh": "2023-12-08T23:17:07.319422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-12-08T22:44:39.885773Z", "last_refresh": "2023-12-08T23:17:08.008728Z", "ports": [9095], "running": 1, "size": 1}}] 2023-12-08T23:19:03.964 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-12-08T23:19:03.964 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_451ceae11b5d4caee05e94372fe658621eefc0b1/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-12-08T23:19:04.070 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=06d66ecc93c94f21aba72222370a0392 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_451ceae11b5d4caee05e94372fe658621eefc0b1/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-12-08T23:19:04.072 DEBUG:teuthology.run_tasks:Unwinding manager vip 2023-12-08T23:19:04.082 INFO:tasks.vip:Removing 10.0.15.40 (and any VIPs) on smithi040.front.sepia.ceph.com iface ens1f0... 2023-12-08T23:19:04.082 DEBUG:teuthology.orchestra.run.smithi040:> sudo ip addr del 10.0.15.40/16 dev ens1f0 2023-12-08T23:19:04.095 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:03 smithi149 bash[28710]: cluster 2023-12-08T23:19:03.013605+0000 mgr.smithi040.evuiyl (mgr.14180) 1639 : cluster [DBG] pgmap v1058: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:19:04.096 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:03 smithi149 bash[28710]: audit 2023-12-08T23:19:03.096817+0000 mgr.smithi040.evuiyl (mgr.14180) 1640 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:19:04.107 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:03 smithi040 bash[24841]: cluster 2023-12-08T23:19:03.013605+0000 mgr.smithi040.evuiyl (mgr.14180) 1639 : cluster [DBG] pgmap v1058: 97 pgs: 97 active+clean; 2.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-12-08T23:19:04.107 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:03 smithi040 bash[24841]: audit 2023-12-08T23:19:03.096817+0000 mgr.smithi040.evuiyl (mgr.14180) 1640 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-12-08T23:19:04.112 DEBUG:teuthology.orchestra.run.smithi040:> sudo ip addr del 10.0.31.40/16 dev ens1f0 2023-12-08T23:19:04.172 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-12-08T23:19:04.173 INFO:teuthology.orchestra.run.smithi040.stderr:RTNETLINK answers: Cannot assign requested address 2023-12-08T23:19:04.173 INFO:tasks.vip:Removing 10.0.15.149 (and any VIPs) on smithi149.front.sepia.ceph.com iface enp3s0f1... 2023-12-08T23:19:04.173 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr del 10.0.15.149/16 dev enp3s0f1 2023-12-08T23:19:04.191 DEBUG:teuthology.orchestra.run.smithi149:> sudo ip addr del 10.0.31.40/16 dev enp3s0f1 2023-12-08T23:19:04.248 INFO:teuthology.orchestra.run.smithi149.stderr:RTNETLINK answers: Cannot assign requested address 2023-12-08T23:19:04.248 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-12-08T23:19:04.249 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2023-12-08T23:19:04.260 INFO:tasks.cephadm:Teardown begin 2023-12-08T23:19:04.260 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-08T23:19:04.277 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-08T23:19:04.313 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2023-12-08T23:19:04.313 DEBUG:teuthology.orchestra.run.smithi040:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-12-08T23:19:04.323 DEBUG:teuthology.orchestra.run.smithi149:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-12-08T23:19:04.363 INFO:tasks.cephadm:Stopping all daemons... 2023-12-08T23:19:04.363 INFO:tasks.cephadm.mon.smithi040:Stopping mon.smithi040... 2023-12-08T23:19:04.363 DEBUG:teuthology.orchestra.run.smithi040:> sudo systemctl stop ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040 2023-12-08T23:19:04.681 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:04 smithi040 systemd[1]: Stopping Ceph mon.smithi040 for 20a983fc-961b-11ee-95a3-87774f69a715... 2023-12-08T23:19:04.681 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:04 smithi040 bash[128262]: Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon.smithi040 2023-12-08T23:19:04.681 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:04 smithi040 bash[24841]: debug 2023-12-08T23:19:04.539+0000 7f07512d7700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi040 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-08T23:19:04.681 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:04 smithi040 bash[24841]: debug 2023-12-08T23:19:04.539+0000 7f07512d7700 -1 mon.smithi040@0(leader) e2 *** Got Signal Terminated *** 2023-12-08T23:19:05.542 INFO:journalctl@ceph.mon.smithi040.smithi040.stdout:Dec 08 23:19:05 smithi040 bash[128298]: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon-smithi040 2023-12-08T23:19:05.562 DEBUG:teuthology.orchestra.run.smithi040:> sudo pkill -f 'journalctl -f -n 0 -u ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi040.service' 2023-12-08T23:19:05.616 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-08T23:19:05.617 INFO:tasks.cephadm.mon.smithi040:Stopped mon.smithi040 2023-12-08T23:19:05.617 INFO:tasks.cephadm.mon.smithi149:Stopping mon.smithi149... 2023-12-08T23:19:05.617 DEBUG:teuthology.orchestra.run.smithi149:> sudo systemctl stop ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi149 2023-12-08T23:19:05.895 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:05 smithi149 systemd[1]: Stopping Ceph mon.smithi149 for 20a983fc-961b-11ee-95a3-87774f69a715... 2023-12-08T23:19:05.896 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:05 smithi149 bash[50974]: Error response from daemon: No such container: ceph-20a983fc-961b-11ee-95a3-87774f69a715-mon.smithi149 2023-12-08T23:19:06.289 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:05 smithi149 bash[28710]: debug 2023-12-08T23:19:05.890+0000 7f7009163700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi149 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2023-12-08T23:19:06.289 INFO:journalctl@ceph.mon.smithi149.smithi149.stdout:Dec 08 23:19:05 smithi149 bash[28710]: debug 2023-12-08T23:19:05.890+0000 7f7009163700 -1 mon.smithi149@1(peon) e2 *** Got Signal Terminated *** 2023-12-08T23:19:06.946 DEBUG:teuthology.orchestra.run.smithi149:> sudo pkill -f 'journalctl -f -n 0 -u ceph-20a983fc-961b-11ee-95a3-87774f69a715@mon.smithi149.service' 2023-12-08T23:19:06.999 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-08T23:19:06.999 INFO:tasks.cephadm.mon.smithi149:Stopped mon.smithi149 2023-12-08T23:19:06.999 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 20a983fc-961b-11ee-95a3-87774f69a715 --force --keep-logs 2023-12-08T23:20:07.800 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 20a983fc-961b-11ee-95a3-87774f69a715 --force --keep-logs 2023-12-08T23:21:09.335 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-08T23:21:09.351 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-12-08T23:21:09.363 INFO:tasks.cephadm:Archiving crash dumps... 2023-12-08T23:21:09.366 DEBUG:teuthology.misc:Transferring archived files from smithi040:/var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/ubuntu@smithi040.front.sepia.ceph.com/crash 2023-12-08T23:21:09.367 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash -- . 2023-12-08T23:21:09.409 INFO:teuthology.orchestra.run.smithi040.stderr:tar: /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash: Cannot open: No such file or directory 2023-12-08T23:21:09.409 INFO:teuthology.orchestra.run.smithi040.stderr:tar: Error is not recoverable: exiting now 2023-12-08T23:21:09.411 DEBUG:teuthology.misc:Transferring archived files from smithi149:/var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/ubuntu@smithi149.front.sepia.ceph.com/crash 2023-12-08T23:21:09.412 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash -- . 2023-12-08T23:21:09.428 INFO:teuthology.orchestra.run.smithi149.stderr:tar: /var/lib/ceph/20a983fc-961b-11ee-95a3-87774f69a715/crash: Cannot open: No such file or directory 2023-12-08T23:21:09.429 INFO:teuthology.orchestra.run.smithi149.stderr:tar: Error is not recoverable: exiting now 2023-12-08T23:21:09.430 INFO:tasks.cephadm:Checking cluster log for badness... 2023-12-08T23:21:09.430 DEBUG:teuthology.orchestra.run.smithi040:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2023-12-08T23:21:09.470 INFO:teuthology.orchestra.run.smithi040.stderr:grep: /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph.log: No such file or directory 2023-12-08T23:21:09.471 INFO:tasks.cephadm:Compressing logs... 2023-12-08T23:21:09.472 DEBUG:teuthology.orchestra.run.smithi040:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2023-12-08T23:21:09.515 DEBUG:teuthology.orchestra.run.smithi149:> 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 -- 2023-12-08T23:21:09.529 INFO:teuthology.orchestra.run.smithi040.stderr:find: '/var/log/rbd-target-api': No such file or directory 2023-12-08T23:21:09.530 INFO:teuthology.orchestra.run.smithi149.stderr:find: '/var/log/rbd-target-api': No such file or directory 2023-12-08T23:21:09.532 INFO:teuthology.orchestra.run.smithi040.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi040.log 2023-12-08T23:21:09.533 INFO:teuthology.orchestra.run.smithi040.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.5.log 2023-12-08T23:21:09.533 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi040.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi040.gbuccx.log 2023-12-08T23:21:09.534 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.1.log 2023-12-08T23:21:09.534 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi040.gbuccx.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi040.evuiyl.log 2023-12-08T23:21:09.535 INFO:teuthology.orchestra.run.smithi040.stderr: 60.3% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi040.gbuccx.log.gz 2023-12-08T23:21:09.535 INFO:teuthology.orchestra.run.smithi040.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.3.log 2023-12-08T23:21:09.536 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.1.log: /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi040.evuiyl.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log 2023-12-08T23:21:09.537 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi149.uzeacz.log 2023-12-08T23:21:09.537 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.6.log 2023-12-08T23:21:09.538 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.7.log 2023-12-08T23:21:09.538 INFO:teuthology.orchestra.run.smithi040.stderr:gzip -5 --verbose /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log: -- /var/log/ceph/cephadm.log 2023-12-08T23:21:09.539 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi149.uzeacz.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi149.djgwiz.log 2023-12-08T23:21:09.539 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi149.log 2023-12-08T23:21:09.539 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.6.log: /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi149.djgwiz.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.0.log 2023-12-08T23:21:09.539 INFO:teuthology.orchestra.run.smithi149.stderr: 83.5% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mds.foofs.smithi149.djgwiz.log.gz 2023-12-08T23:21:09.539 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi149.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.4.log 2023-12-08T23:21:09.540 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log 2023-12-08T23:21:09.541 INFO:teuthology.orchestra.run.smithi149.stderr:gzip -5 --verbose -- /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.2.log 2023-12-08T23:21:09.541 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.4.log: /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2023-12-08T23:21:09.546 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.2.log: 92.4% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log.gz 2023-12-08T23:21:09.549 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.7.log: /var/log/ceph/cephadm.log: 92.4% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-volume.log.gz 2023-12-08T23:21:09.549 INFO:teuthology.orchestra.run.smithi149.stderr:/var/log/ceph/cephadm.log: 93.6% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi149.uzeacz.log.gz 2023-12-08T23:21:09.553 INFO:teuthology.orchestra.run.smithi149.stderr: 90.4% -- replaced with /var/log/ceph/cephadm.log.gz 2023-12-08T23:21:09.560 INFO:teuthology.orchestra.run.smithi040.stderr: 92.8% -- replaced with /var/log/ceph/cephadm.log.gz 2023-12-08T23:21:09.841 INFO:teuthology.orchestra.run.smithi040.stderr: 89.5% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mgr.smithi040.evuiyl.log.gz 2023-12-08T23:21:09.864 INFO:teuthology.orchestra.run.smithi149.stderr: 92.6% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi149.log.gz 2023-12-08T23:21:10.155 INFO:teuthology.orchestra.run.smithi040.stderr: 93.1% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.1.log.gz 2023-12-08T23:21:10.192 INFO:teuthology.orchestra.run.smithi149.stderr: 93.0% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.2.log.gz 2023-12-08T23:21:10.220 INFO:teuthology.orchestra.run.smithi040.stderr: 93.2% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.7.log.gz 2023-12-08T23:21:10.242 INFO:teuthology.orchestra.run.smithi040.stderr: 93.1% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.5.log.gz 2023-12-08T23:21:10.258 INFO:teuthology.orchestra.run.smithi149.stderr: 93.0% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.4.log.gz 2023-12-08T23:21:10.367 INFO:teuthology.orchestra.run.smithi149.stderr: 92.9% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.0.log.gz 2023-12-08T23:21:10.396 INFO:teuthology.orchestra.run.smithi040.stderr: 93.6% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.3.log.gz 2023-12-08T23:21:10.399 INFO:teuthology.orchestra.run.smithi149.stderr: 93.0% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-osd.6.log.gz 2023-12-08T23:21:10.401 INFO:teuthology.orchestra.run.smithi149.stderr: 2023-12-08T23:21:10.401 INFO:teuthology.orchestra.run.smithi149.stderr:real 0m0.880s 2023-12-08T23:21:10.401 INFO:teuthology.orchestra.run.smithi149.stderr:user 0m3.298s 2023-12-08T23:21:10.401 INFO:teuthology.orchestra.run.smithi149.stderr:sys 0m0.138s 2023-12-08T23:21:10.473 INFO:teuthology.orchestra.run.smithi040.stderr: 90.0% -- replaced with /var/log/ceph/20a983fc-961b-11ee-95a3-87774f69a715/ceph-mon.smithi040.log.gz 2023-12-08T23:21:10.474 INFO:teuthology.orchestra.run.smithi040.stderr: 2023-12-08T23:21:10.475 INFO:teuthology.orchestra.run.smithi040.stderr:real 0m0.956s 2023-12-08T23:21:10.475 INFO:teuthology.orchestra.run.smithi040.stderr:user 0m4.045s 2023-12-08T23:21:10.475 INFO:teuthology.orchestra.run.smithi040.stderr:sys 0m0.136s 2023-12-08T23:21:10.476 INFO:tasks.cephadm:Archiving logs... 2023-12-08T23:21:10.476 DEBUG:teuthology.misc:Transferring archived files from smithi040:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/ubuntu@smithi040.front.sepia.ceph.com/log 2023-12-08T23:21:10.477 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /var/log/ceph -- . 2023-12-08T23:21:11.110 DEBUG:teuthology.misc:Transferring archived files from smithi149:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/ubuntu@smithi149.front.sepia.ceph.com/log 2023-12-08T23:21:11.111 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /var/log/ceph -- . 2023-12-08T23:21:11.554 INFO:tasks.cephadm:Removing cluster... 2023-12-08T23:21:11.555 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 20a983fc-961b-11ee-95a3-87774f69a715 --force 2023-12-08T23:21:12.933 DEBUG:teuthology.orchestra.run.smithi149:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 20a983fc-961b-11ee-95a3-87774f69a715 --force 2023-12-08T23:21:14.296 INFO:tasks.cephadm:Removing cephadm ... 2023-12-08T23:21:14.296 DEBUG:teuthology.orchestra.run.smithi040:> rm -rf /home/ubuntu/cephtest/cephadm 2023-12-08T23:21:14.304 DEBUG:teuthology.orchestra.run.smithi149:> rm -rf /home/ubuntu/cephtest/cephadm 2023-12-08T23:21:14.310 INFO:tasks.cephadm:Teardown complete 2023-12-08T23:21:14.310 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2023-12-08T23:21:14.321 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi040:/dev/vg_nvme/lv_1... 2023-12-08T23:21:14.321 DEBUG:teuthology.orchestra.run.smithi040:> sudo nvme disconnect -n lv_1 2023-12-08T23:21:14.646 INFO:teuthology.orchestra.run.smithi040.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-12-08T23:21:14.648 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:14.649 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi040:/dev/vg_nvme/lv_2... 2023-12-08T23:21:14.649 DEBUG:teuthology.orchestra.run.smithi040:> sudo nvme disconnect -n lv_2 2023-12-08T23:21:14.942 INFO:teuthology.orchestra.run.smithi040.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-12-08T23:21:14.943 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:14.944 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi040:/dev/vg_nvme/lv_3... 2023-12-08T23:21:14.944 DEBUG:teuthology.orchestra.run.smithi040:> sudo nvme disconnect -n lv_3 2023-12-08T23:21:15.246 INFO:teuthology.orchestra.run.smithi040.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-12-08T23:21:15.247 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:15.248 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi040:/dev/vg_nvme/lv_4... 2023-12-08T23:21:15.248 DEBUG:teuthology.orchestra.run.smithi040:> sudo nvme disconnect -n lv_4 2023-12-08T23:21:15.506 INFO:teuthology.orchestra.run.smithi040.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-12-08T23:21:15.507 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:15.508 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2023-12-08T23:21:15.508 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/scratch_devs 2023-12-08T23:21:15.523 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_1... 2023-12-08T23:21:15.523 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_1 2023-12-08T23:21:15.830 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-12-08T23:21:15.831 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:15.832 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_2... 2023-12-08T23:21:15.832 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_2 2023-12-08T23:21:16.126 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-12-08T23:21:16.127 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:16.128 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_3... 2023-12-08T23:21:16.128 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_3 2023-12-08T23:21:16.418 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-12-08T23:21:16.419 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:16.420 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi149:/dev/vg_nvme/lv_4... 2023-12-08T23:21:16.420 DEBUG:teuthology.orchestra.run.smithi149:> sudo nvme disconnect -n lv_4 2023-12-08T23:21:16.714 INFO:teuthology.orchestra.run.smithi149.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-12-08T23:21:16.715 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:16.716 DEBUG:teuthology.orchestra.run.smithi149:> set -ex 2023-12-08T23:21:16.716 DEBUG:teuthology.orchestra.run.smithi149:> sudo dd of=/scratch_devs 2023-12-08T23:21:16.732 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-12-08T23:21:16.742 INFO:teuthology.task.clock:Checking final clock skew... 2023-12-08T23:21:16.743 DEBUG:teuthology.orchestra.run.smithi040:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-08T23:21:16.745 DEBUG:teuthology.orchestra.run.smithi149:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-08T23:21:16.762 INFO:teuthology.orchestra.run.smithi040.stdout: remote refid st t when poll reach delay offset jitter 2023-12-08T23:21:16.762 INFO:teuthology.orchestra.run.smithi040.stdout:============================================================================== 2023-12-08T23:21:16.762 INFO:teuthology.orchestra.run.smithi040.stdout:*hv01.front.sepi 44.4.53.2 2 u 2 64 377 0.099 2.039 1.232 2023-12-08T23:21:16.763 INFO:teuthology.orchestra.run.smithi040.stdout:+hv02.front.sepi 63.231.80.2 3 u 15 64 377 0.098 2.792 1.069 2023-12-08T23:21:16.763 INFO:teuthology.orchestra.run.smithi040.stdout:+hv03.front.sepi 74.6.168.72 3 u 16 64 377 0.088 3.187 1.714 2023-12-08T23:21:16.763 INFO:teuthology.orchestra.run.smithi040.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2023-12-08T23:21:16.792 INFO:teuthology.orchestra.run.smithi149.stdout: remote refid st t when poll reach delay offset jitter 2023-12-08T23:21:16.792 INFO:teuthology.orchestra.run.smithi149.stdout:============================================================================== 2023-12-08T23:21:16.792 INFO:teuthology.orchestra.run.smithi149.stdout:*hv01.front.sepi 44.4.53.2 2 u 13 128 377 0.093 -0.682 0.158 2023-12-08T23:21:16.792 INFO:teuthology.orchestra.run.smithi149.stdout:+hv02.front.sepi 63.231.80.2 3 u 78 128 377 0.095 1.581 0.105 2023-12-08T23:21:16.792 INFO:teuthology.orchestra.run.smithi149.stdout:+hv03.front.sepi 74.6.168.72 3 u 130 128 377 0.077 -0.164 0.048 2023-12-08T23:21:16.793 INFO:teuthology.orchestra.run.smithi149.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2023-12-08T23:21:16.793 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-12-08T23:21:16.804 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-12-08T23:21:16.804 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-12-08T23:21:16.814 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-12-08T23:21:16.823 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-12-08T23:21:16.834 INFO:teuthology.task.internal:Duration was 2673.215065 seconds 2023-12-08T23:21:16.834 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-12-08T23:21:16.845 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-12-08T23:21:16.845 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-08T23:21:16.848 DEBUG:teuthology.orchestra.run.smithi149:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-08T23:21:16.896 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-12-08T23:21:16.896 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi040.front.sepia.ceph.com 2023-12-08T23:21:16.897 DEBUG:teuthology.orchestra.run.smithi040:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-08T23:21:16.910 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi149.front.sepia.ceph.com 2023-12-08T23:21:16.911 DEBUG:teuthology.orchestra.run.smithi149:> 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 2023-12-08T23:21:16.925 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-12-08T23:21:16.925 DEBUG:teuthology.orchestra.run.smithi040:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-08T23:21:16.956 DEBUG:teuthology.orchestra.run.smithi149:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-08T23:21:17.037 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-12-08T23:21:17.038 DEBUG:teuthology.orchestra.run.smithi040:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-08T23:21:17.040 DEBUG:teuthology.orchestra.run.smithi149:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-08T23:21:17.243 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-12-08T23:21:17.255 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-12-08T23:21:17.255 DEBUG:teuthology.orchestra.run.smithi040:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-08T23:21:17.274 DEBUG:teuthology.orchestra.run.smithi149:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-08T23:21:17.291 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-12-08T23:21:17.303 DEBUG:teuthology.orchestra.run.smithi040:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-08T23:21:17.319 DEBUG:teuthology.orchestra.run.smithi149:> 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 2023-12-08T23:21:17.331 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern = core 2023-12-08T23:21:17.350 INFO:teuthology.orchestra.run.smithi149.stdout:kernel.core_pattern = core 2023-12-08T23:21:17.381 DEBUG:teuthology.orchestra.run.smithi040:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-08T23:21:17.398 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:17.399 DEBUG:teuthology.orchestra.run.smithi149:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-08T23:21:17.434 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-08T23:21:17.435 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-12-08T23:21:17.448 INFO:teuthology.task.internal:Transferring archived files... 2023-12-08T23:21:17.449 DEBUG:teuthology.misc:Transferring archived files from smithi040:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/smithi040 2023-12-08T23:21:17.450 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-08T23:21:17.490 DEBUG:teuthology.misc:Transferring archived files from smithi149:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124/remote/smithi149 2023-12-08T23:21:17.491 DEBUG:teuthology.orchestra.run.smithi149:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-08T23:21:17.519 INFO:teuthology.task.internal:Removing archive directory... 2023-12-08T23:21:17.519 DEBUG:teuthology.orchestra.run.smithi040:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-08T23:21:17.528 DEBUG:teuthology.orchestra.run.smithi149:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-08T23:21:17.564 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-12-08T23:21:17.577 INFO:teuthology.task.internal:Not uploading archives. 2023-12-08T23:21:17.578 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-12-08T23:21:17.589 INFO:teuthology.task.internal:Tidying up after the test... 2023-12-08T23:21:17.590 DEBUG:teuthology.orchestra.run.smithi040:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-08T23:21:17.592 DEBUG:teuthology.orchestra.run.smithi149:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-08T23:21:17.598 INFO:teuthology.orchestra.run.smithi040.stdout: 1048609 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 8 23:21 /home/ubuntu/cephtest 2023-12-08T23:21:17.612 INFO:teuthology.orchestra.run.smithi149.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 8 23:21 /home/ubuntu/cephtest 2023-12-08T23:21:17.615 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-12-08T23:21:17.627 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-12-08T23:21:17.651 INFO:teuthology.nuke:Checking targets against current locks 2023-12-08T23:21:17.684 DEBUG:teuthology.nuke:shortname: smithi040 2023-12-08T23:21:17.685 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-08T23:21:17.710 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi040.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-08 22:27:18.236174', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2023-12-08T23:21:17.714 DEBUG:teuthology.nuke:shortname: smithi149 2023-12-08T23:21:17.714 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-08T23:21:17.734 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi149.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-08_21:24:43-rados-wip-yuri5-testing-2023-12-07-0740-pacific-distro-default-smithi/7485124', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-08 22:27:18.237615', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2023-12-08T23:21:17.765 INFO:teuthology.orchestra.console.smithi040:Power off 2023-12-08T23:21:17.766 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-08T23:21:17.793 DEBUG:teuthology.orchestra.console.smithi040:power off output: Chassis Power Control: Down/Off 2023-12-08T23:21:17.793 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:17.809 INFO:teuthology.orchestra.console.smithi149:Power off 2023-12-08T23:21:17.810 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-08T23:21:17.832 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is on 2023-12-08T23:21:17.836 DEBUG:teuthology.orchestra.console.smithi149:power off output: Chassis Power Control: Down/Off 2023-12-08T23:21:17.836 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:17.861 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2023-12-08T23:21:21.833 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:21.862 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:21.945 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is on 2023-12-08T23:21:21.973 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2023-12-08T23:21:25.950 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:25.974 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:26.061 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is on 2023-12-08T23:21:26.084 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is on 2023-12-08T23:21:30.066 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:30.085 DEBUG:teuthology.orchestra.console.smithi149:pexpect command: ipmitool -H smithi149.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-08T23:21:30.177 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is off 2023-12-08T23:21:30.196 DEBUG:teuthology.orchestra.console.smithi149:check power output: Chassis Power is off 2023-12-08T23:21:30.279 INFO:teuthology.orchestra.console.smithi040:Power off completed 2023-12-08T23:21:30.297 INFO:teuthology.orchestra.console.smithi149:Power off completed 2023-12-08T23:21:30.402 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress 3-final} duration: 2673.2150654792786 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=06d66ecc93c94f21aba72222370a0392 status: fail success: false 2023-12-08T23:21:30.402 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-08T23:21:30.487 INFO:teuthology.run:FAIL